diff --git a/Gemfile b/Gemfile index 724af38e65..6b666c2dd4 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,7 @@ gem 'rake' group :development, :test do gem 'roo' - gem 'atlas', ref: '89eaa99', github: 'quintel/atlas' + gem 'atlas', ref: 'b2d47a1', github: 'quintel/atlas' gem "ostruct" end diff --git a/Gemfile.lock b/Gemfile.lock index 3a42ef5c8a..ae1a8aa600 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ GIT remote: https://github.com/quintel/atlas.git - revision: 89eaa998652f401815ece14590a12fff68eaa343 - ref: 89eaa99 + revision: b2d47a1495f85638398d89acc17c6a2da7d2acac + ref: b2d47a1 specs: atlas (1.0.0) activemodel (>= 7) diff --git a/config/direct_emissions_csv.yml b/config/direct_emissions_csv.yml index cfca58f187..920e610edd 100644 --- a/config/direct_emissions_csv.yml +++ b/config/direct_emissions_csv.yml @@ -1,225 +1,109 @@ # Configuration for the direct emissions CSV # +# Row selection (the export membership rule) +# ------------------------------------------- +# `rows.require` names a column of `config/sector_mapping.csv`. A (sector_label, use) pair from that +# mapping is exported if its cell in that column has a value ("-" and blank both count as "no +# value"). +# `rows.order_by` names a column whose raw display value orders those pairs (ascending) — the column +# need not appear in `schema:`. +# Each exported pair expands into one row per energy or molecule node whose own +# `sector_label` and `use` attributes match the pair AND which belongs to the node's `:direct_emissions` +# group, sorted by node key. +# A future export (e.g. a costs export) can reuse this mechanism by +# declaring a different `require` column; rows for it stay out of this export by carrying "-" in +# `emissions_sector`. +# +# Column types +# ------------ +# - node_attribute: Evaluates `value` (a node_api method/expression) on each expanded node, with an +# optional `transform` applied to the result. +# - sector_mapping: Renders the raw display value of the named sector_mapping column for the +#. row's pair. A "-"/blank mapping cell renders as "-". +# This is display only: a "-" cell stays unqueryable, and a "-" in the +# `rows.require` column still excludes the pair from the export (see above). +# # Schema # ------ -# Defines the columns included in the exported CSV, split into three categories: +# `name` is the CSV header, and the columns below appear in the exported order. # -# Row identifiers — must also be specified in each `rows` entry: -# - Group Node group used to select which nodes appear in the export. -# The group name itself is not included in the data export. -# - Sector ETM sector name -# - Subsector ETM subsector name +# Row identifiers, looked up from the sector mapping (not hand-typed): +# - Sector sector_mapping: emissions_sector +# - Subsector sector_mapping: emissions_subsector +# - IPCC CRT code sector_mapping: ipcc_crt_code +# - IPCC CRT category sector_mapping: ipcc_crt_category +# - IPCC CRT subcategory 1st order sector_mapping: ipcc_crt_subcategory_1st_order +# - IPCC CRT subcategory 2nd order sector_mapping: ipcc_crt_subcategory_2nd_order +# - IPCC CRT subcategory 3rd order sector_mapping: ipcc_crt_subcategory_3rd_order # # Auto-generated node attributes: # - Key Unique node key # - GHG Greenhouse gas type (CO2 or Other GHG), derived via ghg_carrier method # # Emission method columns. -# - CO2_production Direct reporting CO2 production -# - CO2_capture Direct reporting captured CO2 -# - Other_GHG_emissions Direct reporting other GHG emissions -# - Total_GHG_emissions Direct reporting total GHG emissions +# - CO2 production [kton CO2-eq] Direct reporting CO2 production +# - CO2 capture [kton CO2-eq] Direct reporting captured CO2 +# - Other GHG emissions [kton CO2-eq] Direct reporting other GHG emissions +# - Total GHG emissions [kton CO2-eq] Direct reporting total GHG emissions # A transform is applied to each: emission values are given in kg, transformed to kton (× 1e-6) # and rounded to 6 decimal places. # -# Rows -# ---- -# See explanation above for row identifiers, rows include: -# - Group -# - Sector -# - Subsector - +# Modellers may append further classification columns later by adding a `sector_mapping` entry here +# — any column of `config/sector_mapping.csv` may be surfaced, in any order, under any header. +# For example: +# - name: Use +# type: sector_mapping +# value: use +# - name: "IPCC CRT code (aggregated)" +# type: sector_mapping +# value: ipcc_crt_code_agg schema: - - name: Group - type: node_group - name: Sector + type: sector_mapping + value: emissions_sector - name: Subsector + type: sector_mapping + value: emissions_subsector + - name: "IPCC CRT code" + type: sector_mapping + value: ipcc_crt_code + - name: "IPCC CRT category" + type: sector_mapping + value: ipcc_crt_category + - name: "IPCC CRT subcategory 1st order" + type: sector_mapping + value: ipcc_crt_subcategory_1st_order + - name: "IPCC CRT subcategory 2nd order" + type: sector_mapping + value: ipcc_crt_subcategory_2nd_order + - name: "IPCC CRT subcategory 3rd order" + type: sector_mapping + value: ipcc_crt_subcategory_3rd_order - name: Key type: node_attribute value: key - name: GHG type: node_attribute value: ghg_carrier - - name: CO2_production - label: "CO2 production [kton CO2-eq]" + - name: "CO2 production [kton CO2-eq]" type: node_attribute value: direct_reporting_emissions_co2_production transform: "(value * 1e-6).round(6)" - - name: CO2_capture - label: "CO2 capture [kton CO2-eq]" + - name: "CO2 capture [kton CO2-eq]" type: node_attribute value: direct_reporting_emissions_co2_capture transform: "(value * 1e-6).round(6)" - - name: Other_GHG_emissions - label: "Other GHG emissions [kton CO2-eq]" + - name: "Other GHG emissions [kton CO2-eq]" type: node_attribute value: direct_reporting_emissions_other_ghg_emissions transform: "(value * 1e-6).round(6)" - - name: Total_GHG_emissions - label: "Total GHG emissions [kton CO2-eq]" + - name: "Total GHG emissions [kton CO2-eq]" type: node_attribute value: direct_reporting_emissions_total_ghg_emissions transform: "(value * 1e-6).round(6)" rows: - - Group: emissions_energy_electricity_and_heat_production - Sector: Energy - Subsector: Electricity and heat production - - Group: emissions_energy_fuels_production - Sector: Energy - Subsector: Fuels production - - Group: emissions_energy_steel - Sector: Energy - Subsector: Steel - - Group: emissions_energy_methanol_production - Sector: Energy - Subsector: Methanol production - - Group: emissions_energy_hydrogen_production - Sector: Energy - Subsector: Hydrogen production - - Group: emissions_energy_fugitive_emissions - Sector: Energy - Subsector: Fugitive emissions - - Group: emissions_energy_ccus - Sector: Energy - Subsector: CCUS - - Group: emissions_industry_non_specified - Sector: Industry - Subsector: Non-specified - - Group: emissions_industry_electricity_and_heat_production - Sector: Industry - Subsector: Electricity and heat production - - Group: emissions_industry_refineries - Sector: Industry - Subsector: Refineries - - Group: emissions_industry_steel - Sector: Industry - Subsector: Steel - - Group: emissions_industry_aluminium - Sector: Industry - Subsector: Aluminium - - Group: emissions_industry_other_metals - Sector: Industry - Subsector: Other metals - - Group: emissions_industry_fertilizers - Sector: Industry - Subsector: Fertilizers - - Group: emissions_industry_chemicals - Sector: Industry - Subsector: Chemicals - - Group: emissions_industry_paper - Sector: Industry - Subsector: Paper - - Group: emissions_industry_food - Sector: Industry - Subsector: Food - - Group: emissions_industry_other - Sector: Industry - Subsector: Other - - Group: emissions_transport_non_specified - Sector: National transport - Subsector: Non-specified - - Group: emissions_transport_cars - Sector: National transport - Subsector: Cars - - Group: emissions_transport_motorcycles - Sector: National transport - Subsector: Motorcycles - - Group: emissions_transport_bicycles - Sector: National transport - Subsector: Bicycles - - Group: emissions_transport_buses - Sector: National transport - Subsector: Buses - - Group: emissions_transport_trucks - Sector: National transport - Subsector: Trucks - - Group: emissions_transport_vans - Sector: National transport - Subsector: Vans - - Group: emissions_transport_trains - Sector: National transport - Subsector: Trains - - Group: emissions_transport_trams_metros - Sector: National transport - Subsector: Trams and metros - - Group: emissions_transport_domestic_navigation - Sector: National transport - Subsector: Domestic navigation - - Group: emissions_transport_domestic_aviation - Sector: National transport - Subsector: Domestic aviation - - Group: emissions_buildings_non_specified - Sector: Buildings - Subsector: Non-specified - - Group: emissions_buildings_space_heating - Sector: Buildings - Subsector: Space heating - - Group: emissions_buildings_cooling - Sector: Buildings - Subsector: Cooling - - Group: emissions_buildings_lighting - Sector: Buildings - Subsector: Lighting - - Group: emissions_buildings_appliances - Sector: Buildings - Subsector: Appliances - - Group: emissions_households_non_specified - Sector: Households - Subsector: Non-specified - - Group: emissions_households_space_heating - Sector: Households - Subsector: Space heating - - Group: emissions_households_hot_water - Sector: Households - Subsector: Hot water - - Group: emissions_households_cooling - Sector: Households - Subsector: Cooling - - Group: emissions_households_cooking - Sector: Households - Subsector: Cooking - - Group: emissions_households_lighting - Sector: Households - Subsector: Lighting - - Group: emissions_households_appliances - Sector: Households - Subsector: Appliances - - Group: emissions_agriculture_non_specified - Sector: Agriculture - Subsector: Non-specified - - Group: emissions_agriculture_electricity_and_heat_production - Sector: Agriculture - Subsector: Electricity and heat production - - Group: emissions_agriculture_heating - Sector: Agriculture - Subsector: Heating - - Group: emissions_other_non_specified - Sector: Other - Subsector: Non-specified - - Group: emissions_other_heating - Sector: Other - Subsector: Heating - - Group: emissions_other_other_transportation - Sector: Other - Subsector: Other transportation - - Group: emissions_other_indirect_emissions - Sector: Other - Subsector: Indirect emissions - - Group: emissions_lulucf_emissions - Sector: LULUCF - Subsector: Emissions - - Group: emissions_lulucf_removals - Sector: LULUCF - Subsector: Removals - - Group: emissions_waste_non_specified - Sector: Waste - Subsector: Non-specified - - Group: emissions_bunkers_international_aviation - Sector: International transport - Subsector: International aviation - - Group: emissions_bunkers_international_navigation - Sector: International transport - Subsector: International navigation + require: emissions_sector + order_by: ipcc_crt_code diff --git a/config/energy_node_positions.yml b/config/energy_node_positions.yml index 59b3b5edc1..207ae85c6f 100644 --- a/config/energy_node_positions.yml +++ b/config/energy_node_positions.yml @@ -542,12 +542,18 @@ energy_chemical_refineries_transformation_external_coupling_node: energy_chp_coal_gas: x: 3920 "y": 11100 -energy_chp_combined_cycle_ht_network_gas: +energy_chp_combined_cycle_ht_hydrogen: x: 6360 "y": 7460 -energy_chp_combined_cycle_mt_network_gas: +energy_chp_combined_cycle_ht_network_gas: + x: 6360 + "y": 7400 +energy_chp_combined_cycle_mt_hydrogen: x: 6360 "y": 6140 +energy_chp_combined_cycle_mt_network_gas: + x: 6360 + "y": 6080 energy_chp_local_engine_ht_biogas: x: 6060 "y": 7700 @@ -604,7 +610,7 @@ energy_chp_ultra_supercritical_cofiring_mt_coal: "y": 6320 energy_chp_ultra_supercritical_ht_coal: x: 6360 - "y": 7400 + "y": 7340 energy_chp_ultra_supercritical_ht_lignite: x: 6360 "y": 7760 diff --git a/config/sector_mapping.csv b/config/sector_mapping.csv new file mode 100644 index 0000000000..a27fe2246e --- /dev/null +++ b/config/sector_mapping.csv @@ -0,0 +1,65 @@ +sector_label,use,emissions_sector,emissions_subsector,ipcc_crt_code_agg,ipcc_crt_code,ipcc_crt_category,ipcc_crt_subcategory_1st_order,ipcc_crt_subcategory_2nd_order,ipcc_crt_subcategory_3rd_order +energy_electricity_and_heat_production,energetic,Energy,Electricity and heat production,1.A.1,1.A.1.a,Energy,Fuel combustion activities,Energy industries,Public electricity and heat production +industry_refineries,energetic,Industry,Refineries,1.A.1,1.A.1.b,Energy,Fuel combustion activities,Energy industries,Petroleum refining +energy_fuels_production,energetic,Energy,Fuels production,1.A.1,1.A.1.c,Energy,Fuel combustion activities,Energy industries,Manufacture of solid fuels and other energy industries +energy_steel,energetic,Energy,Steel,1.A.1,1.A.1.c,Energy,Fuel combustion activities,Energy industries,Manufacture of solid fuels and other energy industries +industry_non_specified,energetic,Industry,Non-specified,1.A.2,1.A.2,Energy,Fuel combustion activities,Manufacturing industries and construction,- +industry_electricity_and_heat_production,energetic,Industry,Electricity and heat production,1.A.2,1.A.2,Energy,Fuel combustion activities,Manufacturing industries and construction,- +industry_steel,energetic,Industry,Steel,1.A.2,1.A.2.a,Energy,Fuel combustion activities,Manufacturing industries and construction,Iron and steel +industry_aluminium,energetic,Industry,Aluminium,1.A.2,1.A.2.b,Energy,Fuel combustion activities,Manufacturing industries and construction,Non-ferrous metals +industry_other_metals,energetic,Industry,Other metals,1.A.2,1.A.2.b,Energy,Fuel combustion activities,Manufacturing industries and construction,Non-ferrous metals +industry_fertilizers,energetic,Industry,Fertilizers,1.A.2,1.A.2.c,Energy,Fuel combustion activities,Manufacturing industries and construction,Chemicals +industry_chemicals,energetic,Industry,Chemicals,1.A.2,1.A.2.c,Energy,Fuel combustion activities,Manufacturing industries and construction,Chemicals +industry_paper,energetic,Industry,Paper,1.A.2,1.A.2.d,Energy,Fuel combustion activities,Manufacturing industries and construction,"Pulp, paper and print" +industry_food,energetic,Industry,Food,1.A.2,1.A.2.e,Energy,Fuel combustion activities,Manufacturing industries and construction,"Food processing, beverages and tobacco" +industry_other,energetic,Industry,Other,1.A.2,1.A.2.f-m,Energy,Fuel combustion activities,Manufacturing industries and construction,"Non-metallic minerals, transport equipment, machinery, mining, wood and wood products, construction, textile and leather, non-specified industry" +transport_non_specified,energetic,National transport,Non-specified,1.A.3,1.A.3,Energy,Fuel combustion activities,Transport,- +transport_domestic_aviation,energetic,National transport,Domestic aviation,1.A.3,1.A.3.a,Energy,Fuel combustion activities,Transport,Domestic Aviation +transport_cars,energetic,National transport,Cars,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_motorcycles,energetic,National transport,Motorcycles,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_bicycles,energetic,National transport,Bicycles,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_buses,energetic,National transport,Buses,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_vans,energetic,National transport,Vans,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_trucks,energetic,National transport,Trucks,1.A.3,1.A.3.b,Energy,Fuel combustion activities,Transport,Road Transportation +transport_trains,energetic,National transport,Trains,1.A.3,1.A.3.c,Energy,Fuel combustion activities,Transport,Railways +transport_trams_metros,energetic,National transport,Trams and metros,1.A.3,1.A.3.c,Energy,Fuel combustion activities,Transport,Railways +transport_domestic_navigation,energetic,National transport,Domestic navigation,1.A.3,1.A.3.d,Energy,Fuel combustion activities,Transport,Domestic Navigation +other_other_transportation,energetic,Other,Other transportation,1.A.3,1.A.3.e,Energy,Fuel combustion activities,Transport,Other transportation +buildings_non_specified,energetic,Buildings,Non-specified,1.A.4.a,1.A.4.a,Energy,Fuel combustion activities,Other sectors,Commercial/institutional +buildings_space_heating,energetic,Buildings,Space heating,1.A.4.a,1.A.4.a,Energy,Fuel combustion activities,Other sectors,Commercial/institutional +buildings_cooling,energetic,Buildings,Cooling,1.A.4.a,1.A.4.a,Energy,Fuel combustion activities,Other sectors,Commercial/institutional +buildings_appliances,energetic,Buildings,Appliances,1.A.4.a,1.A.4.a,Energy,Fuel combustion activities,Other sectors,Commercial/institutional +buildings_lighting,energetic,Buildings,Lighting,1.A.4.a,1.A.4.a,Energy,Fuel combustion activities,Other sectors,Commercial/institutional +households_non_specified,energetic,Households,Non-specified,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_cooking,energetic,Households,Cooking,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_space_heating,energetic,Households,Space heating,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_hot_water,energetic,Households,Hot water,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_cooling,energetic,Households,Cooling,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_appliances,energetic,Households,Appliances,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +households_lighting,energetic,Households,Lighting,1.A.4.b,1.A.4.b,Energy,Fuel combustion activities,Other sectors,Residential +agriculture_non_specified,energetic,Agriculture,Non-specified,1.A.4.c,1.A.4.c,Energy,Fuel combustion activities,Other sectors,Agriculture/forestry/fishing +agriculture_electricity_and_heat_production,energetic,Agriculture,Electricity and heat production,1.A.4.c,1.A.4.c,Energy,Fuel combustion activities,Other sectors,Agriculture/forestry/fishing +agriculture_heating,energetic,Agriculture,Heating,1.A.4.c,1.A.4.c,Energy,Fuel combustion activities,Other sectors,Agriculture/forestry/fishing +other_non_specified,energetic,Other,Non-specified,1.A.5,1.A.5,Energy,Fuel combustion activities,Other,- +other_heating,energetic,Other,Heating,1.A.5,1.A.5,Energy,Fuel combustion activities,Other,- +energy_fugitive_emissions,non_energetic,Energy,Fugitive emissions,1.B,1.B excl. 1.B.2.a.iv,Energy,Fugitive emissions from fuels,"Solid fuels, Oil and natural gas and other emissions from energy production",- +industry_refineries,non_energetic,Industry,Refineries,1.B,1.B.2.a.iv,Energy,Fugitive emissions from fuels,Oil and natural gas and other emissions from energy production,Refining/storage +energy_ccus,non_energetic,Energy,CCUS,1.C,1.C,Energy,CO2 Transport and storage,-,- +industry_non_specified,non_energetic,Industry,Non-specified,2,2,Industrial processes and product use,-,-,- +industry_other,non_energetic,Industry,Other,2,"2.A,D-G",Industrial processes and product use,"Mineral industry, Non-energy products from fuels and solvent use, Electronics industry, Product uses as substitutes for ODS, Other product manufacture and use",-,- +industry_fertilizers,non_energetic,Industry,Fertilizers,2,2.B.1-2,Industrial processes and product use,Chemical industry,"Ammonia production, Nitric acid production",- +industry_chemicals,non_energetic,Industry,Chemicals,2,"2.B.3-7,8.b-g,9,10.b",Industrial processes and product use,Chemical industry,"Adipic acid production, Caprolactam, glyoxal and glyoxylic acid production, Carbide production, Titanium dioxide production, Soda ash production, Petrochemical and carbon black production excl. Methanol, Fluorochemical production, Other excl. Hydrogen production",- +energy_methanol_production,non_energetic,Energy,Methanol production,2,2.B.8.a,Industrial processes and product use,Chemical industry,Petrochemical and carbon black production,Methanol +energy_hydrogen_production,non_energetic,Energy,Hydrogen production,2,2.B.10.a,Industrial processes and product use,Chemical industry,Other,Hydrogen Production +industry_steel,non_energetic,Industry,Steel,2,2.C.1,Industrial processes and product use,Metal industry,Iron and steel production,- +industry_aluminium,non_energetic,Industry,Aluminium,2,2.C.3,Industrial processes and product use,Metal industry,Aluminium production,- +industry_other_metals,non_energetic,Industry,Other metals,2,"2.C.2,4-7",Industrial processes and product use,Metal industry,"Ferroalloys production, Magnesium production, Lead production, Zinc production, Other",- +industry_paper,non_energetic,Industry,Paper,2,2.H.1,Industrial processes and product use,Other,Pulp and paper,- +industry_food,non_energetic,Industry,Food,2,2.H.2,Industrial processes and product use,Other,Food and beverages industry,- +agriculture_non_specified,non_energetic,Agriculture,Non-specified,3,3,Agriculture,-,-,- +lulucf_removals,non_energetic,LULUCF,Removals,4,4,"Land Use, Land-Use Change and Forestry",-,-,- +lulucf_emissions,non_energetic,LULUCF,Emissions,4,4,"Land Use, Land-Use Change and Forestry",-,-,- +waste_non_specified,non_energetic,Waste,Non-specified,5,5,Waste,-,-,- +other_indirect_emissions,non_energetic,Other,Indirect emissions,ind_CO2,ind_CO2,Indirect CO2 emissions,-,-,- +bunkers_international_aviation,energetic,International transport,International aviation,1.D.1,1.D.1.a,Energy,Memo items,International bunkers,International aviation (aviation bunkers) +bunkers_international_navigation,energetic,International transport,International navigation,1.D.1,1.D.1.b,Energy,Memo items,International bunkers,International navigation (marine bunkers) diff --git a/datasets/AT_austria/AT_austria.derived.ad b/datasets/AT_austria/AT_austria.derived.ad index 11c47ceb88..a1736eaf9d 100644 --- a/datasets/AT_austria/AT_austria.derived.ad +++ b/datasets/AT_austria/AT_austria.derived.ad @@ -1,6 +1,6 @@ - area = AT_austria -- id = 128437 -- parent_id = 128437 +- id = 128860 +- parent_id = 128860 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/AT_austria/emissions.csv b/datasets/AT_austria/emissions.csv index c64fd00b16..00b7b8d178 100644 --- a/datasets/AT_austria/emissions.csv +++ b/datasets/AT_austria/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,96.99667 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,150.77643 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,7070.43598 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,12.02914 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,21.6984 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,3.48169 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,106.46008 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,1.44334 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,118.25276 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,248.09372 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,316.51107 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,4.92896 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.00705 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,190.00049 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,50.3048 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,73.97611 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,130.31905 -Industry,Other,non_energetic,co2,kton CO2-eq,2979.73348 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,2330.8276 -Industry,Other metals,non_energetic,co2,kton CO2-eq,23.76 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,3.39759 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,5.98586 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,8.08926 -Industry,Steel,non_energetic,co2,kton CO2-eq,10339.09313 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,3.88033 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,1989.04603 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,143.42869 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.62618 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.69353 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,264.53851 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,2.052 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1313.36414 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1251.26243 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,117.27009 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,96.99667 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,85.92325 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,150.77643 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,8313.78598 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,7070.43598 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2291.73057 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,21.73302 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,12.02914 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,880.44026 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,8.38572 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,21.6984 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,45.89738 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,5.54914 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,3.48169 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,11056.34049 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,41.85249 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,106.46008 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,510.01133 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,1.38082 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,1.44334 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,102.16125 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,118.25276 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,664.77087 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,248.09372 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,10000.05621 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,604.4025 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,316.51107 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,150.25175 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,4.92896 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1046.41733 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.00705 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,176.33561 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,190.00049 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,37.57352 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,50.3048 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,467.46277 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,781.37258 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,73.97611 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,9533.19002 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,76.13033 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,130.31905 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,3463.04416 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,2979.73348 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,385.51519 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,2330.8276 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,25.5102 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,23.76 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,235.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,3.39759 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2394.33887 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,3.58846 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,5.98586 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,7.04997 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,8.08926 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,6840.43854 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,10339.09313 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,6.45401 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,3.88033 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,1989.04603 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,139.96514 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,143.42869 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,12347.39624 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,35.00478 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.77772 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.62618 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,229.19591 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.2463 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.69353 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,13526.98201 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,195.48628 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,264.53851 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,27.91954 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,2.052 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4339.26463 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1313.36414 diff --git a/datasets/AT_austria/graph_values.yml b/datasets/AT_austria/graph_values.yml index f1ef6a353f..1c6562fa20 100644 --- a/datasets/AT_austria/graph_values.yml +++ b/datasets/AT_austria/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.48883594947855186 :electricity: 0.17447111726758832 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33197882837424153 + :electricity: 0.38679353454262544 energy_chp_combined_cycle_ht_network_gas: demand: 40918.357890075604 full_load_hours: 1306.502563 output: :steam_hot_water: 0.33197882837424153 :electricity: 0.38679353454262544 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33197882837424153 + :electricity: 0.38679353454262544 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 1306.502563 diff --git a/datasets/BEGM11002_antwerpen/BEGM11002_antwerpen.derived.ad b/datasets/BEGM11002_antwerpen/BEGM11002_antwerpen.derived.ad index 703a5a8809..269e8b6837 100644 --- a/datasets/BEGM11002_antwerpen/BEGM11002_antwerpen.derived.ad +++ b/datasets/BEGM11002_antwerpen/BEGM11002_antwerpen.derived.ad @@ -1,6 +1,6 @@ - area = BEGM11002_antwerpen -- id = 128432 -- parent_id = 128432 +- id = 128855 +- parent_id = 128855 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/BEGM11002_antwerpen/emissions.csv b/datasets/BEGM11002_antwerpen/emissions.csv index 88b5577c7b..43a489c495 100644 --- a/datasets/BEGM11002_antwerpen/emissions.csv +++ b/datasets/BEGM11002_antwerpen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2022,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2022,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2022,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2022,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2022,kton CO2-eq,0.0 diff --git a/datasets/BEGM11002_antwerpen/graph_values.yml b/datasets/BEGM11002_antwerpen/graph_values.yml index 5ce8246fe8..883063333f 100644 --- a/datasets/BEGM11002_antwerpen/graph_values.yml +++ b/datasets/BEGM11002_antwerpen/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 4900.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4900.0 diff --git a/datasets/BEGM13040_turnhout/BEGM13040_turnhout.derived.ad b/datasets/BEGM13040_turnhout/BEGM13040_turnhout.derived.ad index e9dca2d68a..585c38fef8 100644 --- a/datasets/BEGM13040_turnhout/BEGM13040_turnhout.derived.ad +++ b/datasets/BEGM13040_turnhout/BEGM13040_turnhout.derived.ad @@ -1,6 +1,6 @@ - area = BEGM13040_turnhout -- id = 128435 -- parent_id = 128435 +- id = 128858 +- parent_id = 128858 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/BEGM13040_turnhout/emissions.csv b/datasets/BEGM13040_turnhout/emissions.csv index 88b5577c7b..fd526b385f 100644 --- a/datasets/BEGM13040_turnhout/emissions.csv +++ b/datasets/BEGM13040_turnhout/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2018,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2018,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2018,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2018,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2018,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2018,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2018,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2018,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2018,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2018,kton CO2-eq,0.0 diff --git a/datasets/BEGM13040_turnhout/graph_values.yml b/datasets/BEGM13040_turnhout/graph_values.yml index f6dc96470f..de67dd5eeb 100644 --- a/datasets/BEGM13040_turnhout/graph_values.yml +++ b/datasets/BEGM13040_turnhout/graph_values.yml @@ -121,12 +121,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.0279415045177848 :electricity: 0.423469024025095 full_load_hours: 6354.3 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 4900.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4900.0 diff --git a/datasets/BEGM35013_oostende/BEGM35013_oostende.derived.ad b/datasets/BEGM35013_oostende/BEGM35013_oostende.derived.ad index 5178d93b8d..48cec66c04 100644 --- a/datasets/BEGM35013_oostende/BEGM35013_oostende.derived.ad +++ b/datasets/BEGM35013_oostende/BEGM35013_oostende.derived.ad @@ -1,6 +1,6 @@ - area = BEGM35013_oostende -- id = 128433 -- parent_id = 128433 +- id = 128856 +- parent_id = 128856 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/BEGM35013_oostende/emissions.csv b/datasets/BEGM35013_oostende/emissions.csv index 88b5577c7b..f19256d76f 100644 --- a/datasets/BEGM35013_oostende/emissions.csv +++ b/datasets/BEGM35013_oostende/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2017,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2017,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2017,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2017,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2017,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2017,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2017,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2017,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2017,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2017,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2017,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2017,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2017,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2017,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2017,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2017,kton CO2-eq,0.0 diff --git a/datasets/BEGM35013_oostende/graph_values.yml b/datasets/BEGM35013_oostende/graph_values.yml index cf54c06c4d..f0a7fb9ee2 100644 --- a/datasets/BEGM35013_oostende/graph_values.yml +++ b/datasets/BEGM35013_oostende/graph_values.yml @@ -121,12 +121,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.0279415045177848 :electricity: 0.423469024025095 full_load_hours: 6354.3 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 5.0310559006211175 full_load_hours: 4900.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4900.0 diff --git a/datasets/BE_belgium/BE_belgium.derived.ad b/datasets/BE_belgium/BE_belgium.derived.ad index 1101fa5360..8cdb047ad2 100644 --- a/datasets/BE_belgium/BE_belgium.derived.ad +++ b/datasets/BE_belgium/BE_belgium.derived.ad @@ -1,6 +1,6 @@ - area = BE_belgium -- id = 128438 -- parent_id = 128438 +- id = 128861 +- parent_id = 128861 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/BE_belgium/emissions.csv b/datasets/BE_belgium/emissions.csv index 6ca39895fc..3956558a3f 100644 --- a/datasets/BE_belgium/emissions.csv +++ b/datasets/BE_belgium/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,183.25473 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,192.22358 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,9367.6977 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,50.36373 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,39.18606 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,189.24881 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,111.92955 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,4.76514 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,116.10414 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,599.22699 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,330.87776 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,5608.89251 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1689.55708 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,203.16889 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,136.91988 -Industry,Other,non_energetic,co2,kton CO2-eq,4678.54385 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,2807.75155 -Industry,Other metals,non_energetic,co2,kton CO2-eq,104.26968 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,22.8754 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,74.1489 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,3.99612 -Industry,Steel,non_energetic,co2,kton CO2-eq,3925.21751 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,18.70258 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,105.38731 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,585.85817 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,1.01907 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,3.74746 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,261.78154 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,280.76928 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1144.54223 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,2586.67254 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,44.43293 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,183.25473 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,178.74107 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,192.22358 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,11457.45158 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,9367.6977 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,4288.9867 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,21.84747 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,50.36373 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,3125.22111 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,23.78014 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,39.18606 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,13312.50452 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,94.18913 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,189.24881 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,23223.9501 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,58.08629 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,111.92955 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2024.12783 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,12.46625 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,4.76514 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,84.90428 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,116.10414 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,1283.31849 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,599.22699 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20482.58858 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,298.55117 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,330.87776 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,2167.56556 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,5608.89251 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,3930.20459 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,1689.55708 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,422.74065 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,3042.65367 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,203.16889 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,23387.67232 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,139.43851 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,136.91988 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,5521.67353 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,4678.54385 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,313.17523 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,2807.75155 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,44.02145 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,104.26968 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,22.8754 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,4299.17 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,110.4559 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,74.1489 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,8.33837 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,3.99612 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,10047.90338 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,3925.21751 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,15.30433 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,18.70258 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,6.09208 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,105.38731 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,2942.12338 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,585.85817 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,171.93317 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1.49763 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.01907 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,334.42134 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,1.88079 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,3.74746 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,20726.22792 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,315.82926 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,261.78154 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,299.49882 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,280.76928 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4496.74211 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1144.54223 diff --git a/datasets/BE_belgium/graph_values.yml b/datasets/BE_belgium/graph_values.yml index e340cccd4a..c928d7269a 100644 --- a/datasets/BE_belgium/graph_values.yml +++ b/datasets/BE_belgium/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 5450.567493 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5450.567493 diff --git a/datasets/BG_bulgaria/BG_bulgaria.derived.ad b/datasets/BG_bulgaria/BG_bulgaria.derived.ad index fd6f5cbe44..270bfac942 100644 --- a/datasets/BG_bulgaria/BG_bulgaria.derived.ad +++ b/datasets/BG_bulgaria/BG_bulgaria.derived.ad @@ -1,6 +1,6 @@ - area = BG_bulgaria -- id = 128439 -- parent_id = 128439 +- id = 128862 +- parent_id = 128862 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/BG_bulgaria/emissions.csv b/datasets/BG_bulgaria/emissions.csv index fa88623383..71a5311f89 100644 --- a/datasets/BG_bulgaria/emissions.csv +++ b/datasets/BG_bulgaria/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,44.33205 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,57.55609 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,5946.48781 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,45.44533 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,5.42475 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,2.27232 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,119.75542 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.00842 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,521.83871 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,1172.13747 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,319.80528 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,519.48952 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,76.465 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,50.12362 -Industry,Other,non_energetic,co2,kton CO2-eq,2414.4751 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,831.55449 -Industry,Other metals,non_energetic,co2,kton CO2-eq,129.06911 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.95791 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,7.55699 -Industry,Steel,non_energetic,co2,kton CO2-eq,31.57648 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,255.23753 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,9620.78343 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,68.13999 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.00818 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.12364 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,109.69515 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,12.59824 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,2984.9485 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1649.28531 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,161.93298 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,44.33205 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,74.07363 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,57.55609 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,12252.20704 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5946.48781 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,3116.95761 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,18.18063 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,45.44533 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,713.284 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,5.42694 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,5.42475 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,182.664 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,1.71336 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,2.27232 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,35178.68512 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,122.84478 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,119.75542 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,362.21588 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.70961 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.00842 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,68.03027 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,521.83871 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2349.07854 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,1172.13747 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,2887.25718 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,311.99159 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,319.80528 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,774.87669 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,519.48952 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,14.73943 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2507.85382 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,1464.98608 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,76.465 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,17663.9322 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,92.80458 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,50.12362 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,3385.93047 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,2414.4751 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,32.77719 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,831.55449 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,319.35308 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,129.06911 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,1.16052 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,859.80891 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,1.56481 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.95791 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,56.55 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,8.34466 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,7.55699 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,1283.2421 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,31.57648 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,28.8036 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,321.21097 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,255.23753 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,16665.46706 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,9620.78343 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,89.21994 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,68.13999 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,85.72884 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.65226 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.00818 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,131.64606 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,13.67129 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.12364 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,6212.72412 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,157.47568 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,109.69515 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,19.83452 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,12.59824 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,5238.42641 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,2984.9485 diff --git a/datasets/BG_bulgaria/graph_values.yml b/datasets/BG_bulgaria/graph_values.yml index 2f206335aa..ce501697b3 100644 --- a/datasets/BG_bulgaria/graph_values.yml +++ b/datasets/BG_bulgaria/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.7499332022821544 + :electricity: 0.3160881514 energy_chp_combined_cycle_ht_network_gas: demand: 9318.561143698365 full_load_hours: 8000.0 output: :steam_hot_water: 0.7499332022821544 :electricity: 0.3160881514 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.7499332022821544 + :electricity: 0.3160881514 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/CH_switzerland/CH_switzerland.derived.ad b/datasets/CH_switzerland/CH_switzerland.derived.ad index 924c210fa0..6c544d154f 100644 --- a/datasets/CH_switzerland/CH_switzerland.derived.ad +++ b/datasets/CH_switzerland/CH_switzerland.derived.ad @@ -1,6 +1,6 @@ - area = CH_switzerland -- id = 128469 -- parent_id = 128469 +- id = 128892 +- parent_id = 128892 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/CH_switzerland/emissions.csv b/datasets/CH_switzerland/emissions.csv index 1588bf60b9..0b0f6776cf 100644 --- a/datasets/CH_switzerland/emissions.csv +++ b/datasets/CH_switzerland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,7.95578 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,45.39014 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,5850.049 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,31.72145 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,41.99984 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.12508 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,20.66426 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.14273 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,33.35183 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,206.94445 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,81.17777 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,142.11408 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,589.79652 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,37.80708 -Industry,Other,non_energetic,co2,kton CO2-eq,1945.12879 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1584.5096 -Industry,Other metals,non_energetic,co2,kton CO2-eq,1.5162 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.32213 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.54664 -Industry,Steel,non_energetic,co2,kton CO2-eq,6.75597 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,61.35929 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,1827.78003 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,120.28818 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.94108 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0495 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,139.48591 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,9.05672 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1190.27139 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,812.36601 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,13.57082 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,7.95578 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,48.90337 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,45.39014 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,6752.21436 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5850.049 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,4838.46653 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,39.1904 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,31.72145 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,3065.92311 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,23.02516 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,41.99984 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,60.45969 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.52259 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.12508 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,2103.76524 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,43.74174 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,20.66426 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0351 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.14273 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,26.34196 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,33.35183 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,372.16035 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,206.94445 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,11608.44109 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,194.63397 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,81.17777 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,139.2592 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,104.71334 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,126.78423 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,142.11408 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,388.47805 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,589.79652 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,58.2417 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,6532.54582 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,35.58541 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,37.80708 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,2874.87209 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1945.12879 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,239.08896 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1584.5096 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,1.5162 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,366.11824 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.544 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.32213 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,3.94002 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.54664 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,11.90941 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,6.75597 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,83.71717 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,61.35929 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,1847.50729 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,1827.78003 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,411.10547 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,120.28818 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,217.65381 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1.76961 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.94108 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,31.416 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.09324 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0495 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,14370.71372 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,285.47542 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,139.48591 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,40.23302 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,9.05672 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,2238.10286 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1190.27139 diff --git a/datasets/CH_switzerland/graph_values.yml b/datasets/CH_switzerland/graph_values.yml index 20854183e7..999e5646d8 100644 --- a/datasets/CH_switzerland/graph_values.yml +++ b/datasets/CH_switzerland/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.183 + :electricity: 0.295 energy_chp_combined_cycle_ht_network_gas: demand: 7234.169491525424 full_load_hours: 4589.25 output: :steam_hot_water: 0.183 :electricity: 0.295 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.183 + :electricity: 0.295 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4589.25 diff --git a/datasets/CY_cyprus/CY_cyprus.derived.ad b/datasets/CY_cyprus/CY_cyprus.derived.ad index c0e62b8c99..d0cec5454d 100644 --- a/datasets/CY_cyprus/CY_cyprus.derived.ad +++ b/datasets/CY_cyprus/CY_cyprus.derived.ad @@ -1,6 +1,6 @@ - area = CY_cyprus -- id = 128440 -- parent_id = 128440 +- id = 128863 +- parent_id = 128863 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/CY_cyprus/emissions.csv b/datasets/CY_cyprus/emissions.csv index becc5b5f2e..5e2b88548e 100644 --- a/datasets/CY_cyprus/emissions.csv +++ b/datasets/CY_cyprus/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.51454 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.22587 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,495.23036 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,1.68654 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,7.81438 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,10.663 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,10.28705 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.17673 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,10.36792 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,6.20707 -Industry,Other,non_energetic,co2,kton CO2-eq,819.36754 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,353.65649 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,1.71572 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,298.75689 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,4.9672 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.14148 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,14.59073 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,656.42427 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,48.88719 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.28073 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.51454 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,1.815 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.22587 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,452.456 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,495.23036 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,75.21224 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.59138 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.68654 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,718.098 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,5.46441 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,7.81438 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,182.788 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,2.39592 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,10.663 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,1675.77 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,5.293 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,10.28705 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.2128 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.17673 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,299.70396 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2.753 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,10.36792 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,502.33537 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2.48982 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,6.20707 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,721.2633 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,819.36754 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,6.6624 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,353.65649 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,85.7182 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.15756 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.45352 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.06157 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,1.71572 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,153.12873 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,298.75689 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,5.209 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,4.9672 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,10.99498 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.06514 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.14148 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,1223.16031 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,20.26709 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,14.59073 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,435.18483 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,656.42427 diff --git a/datasets/CY_cyprus/graph_values.yml b/datasets/CY_cyprus/graph_values.yml index b1c0ed495b..560dd2510a 100644 --- a/datasets/CY_cyprus/graph_values.yml +++ b/datasets/CY_cyprus/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/CZ_czechia/CZ_czechia.derived.ad b/datasets/CZ_czechia/CZ_czechia.derived.ad index 566a90a44a..62e3319540 100644 --- a/datasets/CZ_czechia/CZ_czechia.derived.ad +++ b/datasets/CZ_czechia/CZ_czechia.derived.ad @@ -1,6 +1,6 @@ - area = CZ_czechia -- id = 128441 -- parent_id = 128441 +- id = 128864 +- parent_id = 128864 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/CZ_czechia/emissions.csv b/datasets/CZ_czechia/emissions.csv index 3ef26aab0c..8c2df8ca50 100644 --- a/datasets/CZ_czechia/emissions.csv +++ b/datasets/CZ_czechia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,19.08351 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,341.93262 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,7591.50531 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,13.99662 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,9.43253 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,225.40287 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,16.64257 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,83.73748 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,3280.26335 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,1097.68979 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1224.51457 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,110.67642 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,81.70577 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,106.92744 -Industry,Other,non_energetic,co2,kton CO2-eq,3600.92688 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,4096.20998 -Industry,Other metals,non_energetic,co2,kton CO2-eq,11.83379 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,5.09298 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.68762 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.53281 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,5.45814 -Industry,Steel,non_energetic,co2,kton CO2-eq,5813.09417 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,10.2042 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,7727.83315 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,50.23198 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,658.33062 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,3.0522 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.04955 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,193.45288 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,108.6457 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,5560.62785 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,3671.65646 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,174.03569 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,19.08351 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,1345.24081 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,341.93262 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,13791.12864 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,7591.50531 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,9907.14527 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,54.82325 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,13.99662 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,669.60001 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,4.98456 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,9.43253 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,54584.89821 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,232.41895 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,225.40287 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,1516.41898 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,3.12154 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,16.64257 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,458.44416 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,83.73748 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,13367.06841 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,3280.26335 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,18374.86053 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1807.28647 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1097.68979 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,792.46503 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1224.51457 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,109.32623 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,110.67642 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,990.80214 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,932.8 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,81.70577 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,46823.53473 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,281.57153 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,106.92744 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,4208.00795 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,3600.92688 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,270.20573 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,4096.20998 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,12.76089 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,11.83379 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.20354 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,5.09298 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.68762 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,492.55746 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.61212 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.53281 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,9.78529 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,5.45814 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,9782.0279 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,5813.09417 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,16.61905 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,10.2042 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,7727.83315 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,96.1519 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,50.23198 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,8681.89213 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,1952.2124 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,658.33062 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,192.03645 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2.38107 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3.0522 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,5.42377 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.00542 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.04955 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,11072.18745 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,171.98796 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,193.45288 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,19.96783 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,108.6457 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,3299.45462 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5560.62785 diff --git a/datasets/CZ_czechia/graph_values.yml b/datasets/CZ_czechia/graph_values.yml index 9c7f7b78f7..0c09cdfe48 100644 --- a/datasets/CZ_czechia/graph_values.yml +++ b/datasets/CZ_czechia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.418941821417223 :electricity: 0.17811941067783393 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 6849.656154 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 6849.656154 diff --git a/datasets/DE_germany/DE_germany.derived.ad b/datasets/DE_germany/DE_germany.derived.ad index 3274ef8313..d22560e2de 100644 --- a/datasets/DE_germany/DE_germany.derived.ad +++ b/datasets/DE_germany/DE_germany.derived.ad @@ -1,6 +1,6 @@ - area = DE_germany -- id = 128442 -- parent_id = 128442 +- id = 128865 +- parent_id = 128865 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/DE_germany/emissions.csv b/datasets/DE_germany/emissions.csv index 35bf1f68f7..21ad62605a 100644 --- a/datasets/DE_germany/emissions.csv +++ b/datasets/DE_germany/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,245.22991 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,2730.80358 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,55794.20352 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,178.35372 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,253.74532 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,43.88243 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,4075.69769 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,289.4041 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,1608.33747 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,2575.6488 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,1184.53801 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,694.34578 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,81.4782 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1326.32823 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,815.20834 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,322.30302 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,1043.49019 -Industry,Other,non_energetic,co2,kton CO2-eq,21520.7604 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,13286.59216 -Industry,Other metals,non_energetic,co2,kton CO2-eq,381.44004 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,75.3237 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,68.40507 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,1.27471 -Industry,Steel,non_energetic,co2,kton CO2-eq,16948.07554 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,5.56444 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,7706.51255 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,14528.77232 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,4.96302 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,15.92923 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,1702.10275 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,5376.59338 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,10146.98751 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,324.09507 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,245.22991 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,3192.02902 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,2730.80358 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,69439.99842 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,55794.20352 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,64110.77517 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1768.22279 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,178.35372 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,12072.65384 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,106.73177 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,253.74532 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,6917.3937 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,84.0628 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,43.88243 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,338451.15956 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,2333.68915 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,4075.69769 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,65289.05725 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,689.2488 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,289.4041 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,3363.48209 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,1608.33747 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,38458.77887 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,2575.6488 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,128635.75239 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3466.56416 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1184.53801 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,1011.92312 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,694.34578 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2596.77 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,81.4782 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,2032.63154 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1326.32823 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,21302.49716 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,815.20834 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,6025.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,2896.77444 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,322.30302 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,184187.46345 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1485.11259 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1043.49019 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,26504.81485 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,21520.7604 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,6564.99286 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,13286.59216 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,1257.666 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,381.44004 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,218.86434 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,75.3237 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,24102.59855 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,107.26502 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,68.40507 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,477.16627 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,224.36675 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,1.27471 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,22810.2933 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,16948.07554 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,5.2248 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,5.56444 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,28760.23982 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,7215.38237 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,7706.51255 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,14528.77232 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,11764.6209 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,367.09827 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,4.96302 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,1083.26692 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,18.83713 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,15.92923 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,160293.95574 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3006.8464 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1702.10275 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,41208.89137 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5376.59338 diff --git a/datasets/DE_germany/graph_values.yml b/datasets/DE_germany/graph_values.yml index c325993924..0bd95f7b3c 100644 --- a/datasets/DE_germany/graph_values.yml +++ b/datasets/DE_germany/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.21939572651453468 :electricity: 0.4317496644147613 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.2303261674206617 + :electricity: 0.5220270429697321 energy_chp_combined_cycle_ht_network_gas: demand: 127378.90978160588 full_load_hours: 5229.668569 output: :steam_hot_water: 0.2303261674206617 :electricity: 0.5220270429697321 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.2303261674206617 + :electricity: 0.5220270429697321 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5229.668569 diff --git a/datasets/DK_denmark/DK_denmark.derived.ad b/datasets/DK_denmark/DK_denmark.derived.ad index 16cf823495..406fe8e2f8 100644 --- a/datasets/DK_denmark/DK_denmark.derived.ad +++ b/datasets/DK_denmark/DK_denmark.derived.ad @@ -1,6 +1,6 @@ - area = DK_denmark -- id = 128443 -- parent_id = 128443 +- id = 128866 +- parent_id = 128866 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/DK_denmark/emissions.csv b/datasets/DK_denmark/emissions.csv index a32ffa354b..5f1d075974 100644 --- a/datasets/DK_denmark/emissions.csv +++ b/datasets/DK_denmark/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,40.37032 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,184.71285 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,11990.99703 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,18.07428 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,27.73961 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,16.44338 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,200.57799 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,6.64643 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,194.87786 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,65.90538 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,149.80316 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1.49136 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,77.39899 -Industry,Other,non_energetic,co2,kton CO2-eq,1411.91216 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,488.708 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.1144 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,1.5333 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,22.02483 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,2662.96648 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,327.05209 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,272.47093 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,2.17537 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,142.90975 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,26.46795 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1138.79773 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1564.43188 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,48.13563 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,40.37032 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,613.45989 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,184.71285 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,13382.3202 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,11990.99703 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,1654.97851 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,10.95342 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18.07428 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,1752.85278 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,15.90893 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,27.73961 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,3013.42415 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,21.23569 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,16.44338 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,24996.60854 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,87.49568 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,200.57799 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,530.12816 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,5.76833 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,6.64643 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,340.72568 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,194.87786 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,114.98117 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,65.90538 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,5297.24152 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,181.48236 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,149.80316 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.57025 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1.49136 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,891.513 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,5754.80431 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,64.48509 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,77.39899 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1140.67383 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1411.91216 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,32.39449 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,488.708 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.158 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.1144 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,30.55 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,908.17325 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,1.07994 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,1.5333 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.00536 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,34.31471 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,22.02483 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,30.309 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,6573.98959 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,2662.96648 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,357.03069 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,327.05209 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,1120.05629 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,272.47093 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,175.21315 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3.63026 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,2.17537 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,11739.58018 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,185.47714 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,142.90975 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,24.3342 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,26.46795 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1974.9579 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1138.79773 diff --git a/datasets/DK_denmark/graph_values.yml b/datasets/DK_denmark/graph_values.yml index 66b2f4ab57..a04bde4ce9 100644 --- a/datasets/DK_denmark/graph_values.yml +++ b/datasets/DK_denmark/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.3728780840045868 + :electricity: 0.4028082518848205 energy_chp_combined_cycle_ht_network_gas: demand: 9393.85633533803 full_load_hours: 1106.178733 output: :steam_hot_water: 0.3728780840045868 :electricity: 0.4028082518848205 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.3728780840045868 + :electricity: 0.4028082518848205 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 1106.178733 diff --git a/datasets/EE_estonia/EE_estonia.derived.ad b/datasets/EE_estonia/EE_estonia.derived.ad index 40bdf60cc2..c2e2522c21 100644 --- a/datasets/EE_estonia/EE_estonia.derived.ad +++ b/datasets/EE_estonia/EE_estonia.derived.ad @@ -1,6 +1,6 @@ - area = EE_estonia -- id = 128445 -- parent_id = 128445 +- id = 128868 +- parent_id = 128868 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/EE_estonia/emissions.csv b/datasets/EE_estonia/emissions.csv index 1a506dd31d..7368a8010a 100644 --- a/datasets/EE_estonia/emissions.csv +++ b/datasets/EE_estonia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,3.61631 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,15.59661 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,1543.95781 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,1.69893 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,1.60996 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,5.09684 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,32.26443 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,3.19228 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.03025 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,22.30604 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,19.39481 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,6.16918 -Industry,Other,non_energetic,co2,kton CO2-eq,385.31924 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,225.38873 -Industry,Other metals,non_energetic,co2,kton CO2-eq,3.29263 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,803.31794 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,346.16905 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,27.93659 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.56504 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,327.94357 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,601.32453 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,7.47427 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3.61631 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,13.11045 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,15.59661 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,2710.59455 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1543.95781 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,164.64722 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,7.69821 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.69893 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,106.75165 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.82216 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,1.60996 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,572.9858 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,5.39629 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,5.09684 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,28190.52905 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,15.45906 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,32.26443 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,78.38065 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.17676 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,3.19228 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0972 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.03025 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,71.67662 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,22.30604 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,1024.08301 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,68.63884 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,19.39481 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,307.73487 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,3465.4581 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,8.64414 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,6.16918 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,649.79706 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,385.31924 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,4.84544 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,225.38873 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.75918 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,3.29263 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,803.31794 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,311.68665 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,346.16905 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,4007.16387 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,2421.4331 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,58.8322 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,27.93659 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,2.25179 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.56504 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,402.71626 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,327.94357 diff --git a/datasets/EE_estonia/graph_values.yml b/datasets/EE_estonia/graph_values.yml index b6f97d8257..e31f3bd17f 100644 --- a/datasets/EE_estonia/graph_values.yml +++ b/datasets/EE_estonia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.5506351112825052 :electricity: 0.06257574702235844 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/EL_greece/EL_greece.derived.ad b/datasets/EL_greece/EL_greece.derived.ad index 6c20627183..d5df67c4da 100644 --- a/datasets/EL_greece/EL_greece.derived.ad +++ b/datasets/EL_greece/EL_greece.derived.ad @@ -1,6 +1,6 @@ - area = EL_greece -- id = 128449 -- parent_id = 128449 +- id = 128872 +- parent_id = 128872 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/EL_greece/emissions.csv b/datasets/EL_greece/emissions.csv index 896d81b1ff..42715a9155 100644 --- a/datasets/EL_greece/emissions.csv +++ b/datasets/EL_greece/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,44.19419 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,34.80084 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,8065.72854 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.8657 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,30.37993 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,192.03843 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,78.89026 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.03975 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,9.04229 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,790.53411 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,260.0278 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,291.35792 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,94.35707 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,654.14217 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,18.93692 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,47.35991 -Industry,Other,non_energetic,co2,kton CO2-eq,4089.34909 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,5295.33724 -Industry,Other metals,non_energetic,co2,kton CO2-eq,598.04521 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,6.08333 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,16.47075 -Industry,Steel,non_energetic,co2,kton CO2-eq,81.44683 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.37796 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,105.53425 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5505.97547 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,1.02004 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,296.60323 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,3.36032 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,5376.96535 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,2892.80704 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,282.55343 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,44.19419 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,60.4099 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,34.80084 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,10474.27185 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,8065.72854 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,518.86311 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.89879 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.8657 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,2474.79 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,19.11 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,30.37993 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,8105.71635 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,229.18902 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,192.03843 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40616.71016 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,139.90696 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,78.89026 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,102.0282 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.09467 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.03975 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,42.69752 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,9.04229 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,1296.25457 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,790.53411 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,4653.84672 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,293.84363 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,260.0278 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,225.3922 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,291.35792 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,171.09475 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,94.35707 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,28.60892 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,654.14217 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,992.27721 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,652.04087 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,948.05154 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,18.93692 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,9338.48922 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,61.81529 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,47.35991 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,7007.68078 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,4089.34909 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,121.52175 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,5295.33724 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,681.77379 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,598.04521 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2374.96218 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,4.70954 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,6.08333 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,10.30797 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,16.47075 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,104.88664 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,81.44683 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.27975 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.37796 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,75.94374 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,105.53425 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,2323.53468 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5505.97547 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.02004 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,14136.62237 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,366.01631 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,296.60323 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.22015 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,3.36032 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,5383.74876 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5376.96535 diff --git a/datasets/EL_greece/graph_values.yml b/datasets/EL_greece/graph_values.yml index 21f56ea4de..539059e148 100644 --- a/datasets/EL_greece/graph_values.yml +++ b/datasets/EL_greece/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/ES01_groningen/ES01_groningen.derived.ad b/datasets/ES01_groningen/ES01_groningen.derived.ad index c224b01790..e373deb059 100644 --- a/datasets/ES01_groningen/ES01_groningen.derived.ad +++ b/datasets/ES01_groningen/ES01_groningen.derived.ad @@ -1,6 +1,6 @@ - area = ES01_groningen -- id = 128483 -- parent_id = 128483 +- id = 129940 +- parent_id = 129940 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES01_groningen/emissions.csv b/datasets/ES01_groningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES01_groningen/emissions.csv +++ b/datasets/ES01_groningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES01_groningen/graph_values.yml b/datasets/ES01_groningen/graph_values.yml index f7643b9259..1846ad25b9 100644 --- a/datasets/ES01_groningen/graph_values.yml +++ b/datasets/ES01_groningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 69451.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14979588602245614 - :network_gas: 0.17612262687649127 - :ambient_heat: 0.6740814871010526 + :electricity: 0.18095954666091138 + :network_gas: 0.18568083955657255 + :ambient_heat: 0.633359613782516 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 283315.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7538.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20891116280473276 - :network_gas: 0.16435534878106683 - :ambient_heat: 0.6267334884142005 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769945 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES02_friesland/ES02_friesland.derived.ad b/datasets/ES02_friesland/ES02_friesland.derived.ad index 6a2de4e593..de1302a1f6 100644 --- a/datasets/ES02_friesland/ES02_friesland.derived.ad +++ b/datasets/ES02_friesland/ES02_friesland.derived.ad @@ -1,6 +1,6 @@ - area = ES02_friesland -- id = 128484 -- parent_id = 128484 +- id = 129941 +- parent_id = 129941 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES02_friesland/emissions.csv b/datasets/ES02_friesland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES02_friesland/emissions.csv +++ b/datasets/ES02_friesland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES02_friesland/graph_values.yml b/datasets/ES02_friesland/graph_values.yml index 5f83f0efd3..d900373fd3 100644 --- a/datasets/ES02_friesland/graph_values.yml +++ b/datasets/ES02_friesland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 75759.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15175005527470972 - :network_gas: 0.1653746959890966 - :ambient_heat: 0.6828752487361938 + :electricity: 0.18345014278882243 + :network_gas: 0.17447314045858264 + :ambient_heat: 0.6420767167525949 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 302954.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 14218.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2114522189001942 - :network_gas: 0.15419112439922103 - :ambient_heat: 0.6343566567005848 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES03_drenthe/ES03_drenthe.derived.ad b/datasets/ES03_drenthe/ES03_drenthe.derived.ad index 7e7a2c6850..bcd5cb2163 100644 --- a/datasets/ES03_drenthe/ES03_drenthe.derived.ad +++ b/datasets/ES03_drenthe/ES03_drenthe.derived.ad @@ -1,6 +1,6 @@ - area = ES03_drenthe -- id = 128485 -- parent_id = 128485 +- id = 129942 +- parent_id = 129942 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES03_drenthe/emissions.csv b/datasets/ES03_drenthe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES03_drenthe/emissions.csv +++ b/datasets/ES03_drenthe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES03_drenthe/graph_values.yml b/datasets/ES03_drenthe/graph_values.yml index ec6b8aaf8e..08014c33d2 100644 --- a/datasets/ES03_drenthe/graph_values.yml +++ b/datasets/ES03_drenthe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 51337.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1517368409257958 - :network_gas: 0.16544737490812306 - :ambient_heat: 0.6828157841660812 + :electricity: 0.18343328919958857 + :network_gas: 0.17454898172194028 + :ambient_heat: 0.6420177290784712 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 223763.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1401.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2114350508081594 - :network_gas: 0.15425979676736012 - :ambient_heat: 0.6343051524244805 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES04_twente/ES04_twente.derived.ad b/datasets/ES04_twente/ES04_twente.derived.ad index 2f2380686c..cc1f2e15c7 100644 --- a/datasets/ES04_twente/ES04_twente.derived.ad +++ b/datasets/ES04_twente/ES04_twente.derived.ad @@ -1,6 +1,6 @@ - area = ES04_twente -- id = 128486 -- parent_id = 128486 +- id = 129943 +- parent_id = 129943 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES04_twente/emissions.csv b/datasets/ES04_twente/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES04_twente/emissions.csv +++ b/datasets/ES04_twente/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES04_twente/graph_values.yml b/datasets/ES04_twente/graph_values.yml index 6bad201f44..388dfeda55 100644 --- a/datasets/ES04_twente/graph_values.yml +++ b/datasets/ES04_twente/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 66762.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1544895202971922 - :network_gas: 0.15030763836544286 - :ambient_heat: 0.6952028413373649 + :electricity: 0.18694754861602397 + :network_gas: 0.15873479103470048 + :ambient_heat: 0.6543176603492755 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 282122.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7500.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21500697327357787 - :network_gas: 0.13997210690568618 - :ambient_heat: 0.645020919820736 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES05_west_overijssel/ES05_west_overijssel.derived.ad b/datasets/ES05_west_overijssel/ES05_west_overijssel.derived.ad index 3334e786a0..e85c64a4ab 100644 --- a/datasets/ES05_west_overijssel/ES05_west_overijssel.derived.ad +++ b/datasets/ES05_west_overijssel/ES05_west_overijssel.derived.ad @@ -1,6 +1,6 @@ - area = ES05_west_overijssel -- id = 128487 -- parent_id = 128487 +- id = 129944 +- parent_id = 129944 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES05_west_overijssel/emissions.csv b/datasets/ES05_west_overijssel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES05_west_overijssel/emissions.csv +++ b/datasets/ES05_west_overijssel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES05_west_overijssel/graph_values.yml b/datasets/ES05_west_overijssel/graph_values.yml index fd90d81c61..4a36c82e6a 100644 --- a/datasets/ES05_west_overijssel/graph_values.yml +++ b/datasets/ES05_west_overijssel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 60674.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15411275963187782 - :network_gas: 0.15237982202467212 - :ambient_heat: 0.6935074183434501 + :electricity: 0.1864661354081358 + :network_gas: 0.16090115366384927 + :ambient_heat: 0.652632710928015 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 232067.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13293.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21451859947101518 - :network_gas: 0.14192560211593708 - :ambient_heat: 0.6435557984130479 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES06_flevoland/ES06_flevoland.derived.ad b/datasets/ES06_flevoland/ES06_flevoland.derived.ad index 2111f23aff..517407c019 100644 --- a/datasets/ES06_flevoland/ES06_flevoland.derived.ad +++ b/datasets/ES06_flevoland/ES06_flevoland.derived.ad @@ -1,6 +1,6 @@ - area = ES06_flevoland -- id = 128488 -- parent_id = 128488 +- id = 129945 +- parent_id = 129945 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES06_flevoland/emissions.csv b/datasets/ES06_flevoland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES06_flevoland/emissions.csv +++ b/datasets/ES06_flevoland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES06_flevoland/graph_values.yml b/datasets/ES06_flevoland/graph_values.yml index 9a79df6989..98fc64b23c 100644 --- a/datasets/ES06_flevoland/graph_values.yml +++ b/datasets/ES06_flevoland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 37735.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1638570529384666 - :network_gas: 0.09878620883843357 - :ambient_heat: 0.7373567382230998 + :electricity: 0.19895956546068305 + :network_gas: 0.10468063554709728 + :ambient_heat: 0.6963597989922197 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 172035.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 348.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2270971370308447 - :network_gas: 0.09161145187661882 - :ambient_heat: 0.6812914110925364 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES07_achterhoek/ES07_achterhoek.derived.ad b/datasets/ES07_achterhoek/ES07_achterhoek.derived.ad index 225348229b..c08a56db58 100644 --- a/datasets/ES07_achterhoek/ES07_achterhoek.derived.ad +++ b/datasets/ES07_achterhoek/ES07_achterhoek.derived.ad @@ -1,6 +1,6 @@ - area = ES07_achterhoek -- id = 128489 -- parent_id = 128489 +- id = 129946 +- parent_id = 129946 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES07_achterhoek/emissions.csv b/datasets/ES07_achterhoek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES07_achterhoek/emissions.csv +++ b/datasets/ES07_achterhoek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES07_achterhoek/graph_values.yml b/datasets/ES07_achterhoek/graph_values.yml index 6ab0fe68b1..874ba82608 100644 --- a/datasets/ES07_achterhoek/graph_values.yml +++ b/datasets/ES07_achterhoek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 28865.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15457267964048346 - :network_gas: 0.1498502619773409 - :ambient_heat: 0.6955770583821757 + :electricity: 0.1870538248072374 + :network_gas: 0.15825654746921347 + :ambient_heat: 0.654689627723549 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 133558.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1256.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21511474601890165 - :network_gas: 0.139541015924391 - :ambient_heat: 0.6453442380567073 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES08_arnhem_nijmegen/ES08_arnhem_nijmegen.derived.ad b/datasets/ES08_arnhem_nijmegen/ES08_arnhem_nijmegen.derived.ad index ba02cfcc21..4c609021a1 100644 --- a/datasets/ES08_arnhem_nijmegen/ES08_arnhem_nijmegen.derived.ad +++ b/datasets/ES08_arnhem_nijmegen/ES08_arnhem_nijmegen.derived.ad @@ -1,6 +1,6 @@ - area = ES08_arnhem_nijmegen -- id = 128490 -- parent_id = 128490 +- id = 129947 +- parent_id = 129947 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES08_arnhem_nijmegen/emissions.csv b/datasets/ES08_arnhem_nijmegen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES08_arnhem_nijmegen/emissions.csv +++ b/datasets/ES08_arnhem_nijmegen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES08_arnhem_nijmegen/graph_values.yml b/datasets/ES08_arnhem_nijmegen/graph_values.yml index 4e67dcd2da..d59793479d 100644 --- a/datasets/ES08_arnhem_nijmegen/graph_values.yml +++ b/datasets/ES08_arnhem_nijmegen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 83606.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15510077192948116 - :network_gas: 0.14694575438785362 - :ambient_heat: 0.6979534736826651 + :electricity: 0.18772886564153 + :network_gas: 0.15521885923673678 + :ambient_heat: 0.6570522751217333 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 340621.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13105.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21579895627634899 - :network_gas: 0.1368041748946018 - :ambient_heat: 0.6473968688290493 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES09_foodvalley/ES09_foodvalley.derived.ad b/datasets/ES09_foodvalley/ES09_foodvalley.derived.ad index 3ec6f432eb..a855378164 100644 --- a/datasets/ES09_foodvalley/ES09_foodvalley.derived.ad +++ b/datasets/ES09_foodvalley/ES09_foodvalley.derived.ad @@ -1,6 +1,6 @@ - area = ES09_foodvalley -- id = 128491 -- parent_id = 128491 +- id = 129948 +- parent_id = 129948 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES09_foodvalley/emissions.csv b/datasets/ES09_foodvalley/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES09_foodvalley/emissions.csv +++ b/datasets/ES09_foodvalley/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES09_foodvalley/graph_values.yml b/datasets/ES09_foodvalley/graph_values.yml index d4b0e72b79..9fb8a85d1e 100644 --- a/datasets/ES09_foodvalley/graph_values.yml +++ b/datasets/ES09_foodvalley/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 39501.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15658927295413444 - :network_gas: 0.13875899875226044 - :ambient_heat: 0.7046517282936051 + :electricity: 0.1896329612768959 + :network_gas: 0.14665041624599126 + :ambient_heat: 0.6637166224771128 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 151540.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1954.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21772576795340923 - :network_gas: 0.1290969281863609 - :ambient_heat: 0.65317730386023 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES10_noord_veluwe/ES10_noord_veluwe.derived.ad b/datasets/ES10_noord_veluwe/ES10_noord_veluwe.derived.ad index def5727a38..19296532cc 100644 --- a/datasets/ES10_noord_veluwe/ES10_noord_veluwe.derived.ad +++ b/datasets/ES10_noord_veluwe/ES10_noord_veluwe.derived.ad @@ -1,6 +1,6 @@ - area = ES10_noord_veluwe -- id = 128492 -- parent_id = 128492 +- id = 129949 +- parent_id = 129949 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES10_noord_veluwe/emissions.csv b/datasets/ES10_noord_veluwe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES10_noord_veluwe/emissions.csv +++ b/datasets/ES10_noord_veluwe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES10_noord_veluwe/graph_values.yml b/datasets/ES10_noord_veluwe/graph_values.yml index f11d9ced2d..4d7dc21f44 100644 --- a/datasets/ES10_noord_veluwe/graph_values.yml +++ b/datasets/ES10_noord_veluwe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 19407.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15448829392320124 - :network_gas: 0.15031438342239314 - :ambient_heat: 0.6951973226544056 + :electricity: 0.18694598137943724 + :network_gas: 0.1587418436097376 + :ambient_heat: 0.6543121750108251 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 77388.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1058.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21500538385919796 - :network_gas: 0.1399784645632058 - :ambient_heat: 0.6450161515775963 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES11_fruitdelta_rivierenland/ES11_fruitdelta_rivierenland.derived.ad b/datasets/ES11_fruitdelta_rivierenland/ES11_fruitdelta_rivierenland.derived.ad index d021612d93..5bed18b723 100644 --- a/datasets/ES11_fruitdelta_rivierenland/ES11_fruitdelta_rivierenland.derived.ad +++ b/datasets/ES11_fruitdelta_rivierenland/ES11_fruitdelta_rivierenland.derived.ad @@ -1,6 +1,6 @@ - area = ES11_fruitdelta_rivierenland -- id = 128493 -- parent_id = 128493 +- id = 129950 +- parent_id = 129950 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES11_fruitdelta_rivierenland/emissions.csv b/datasets/ES11_fruitdelta_rivierenland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES11_fruitdelta_rivierenland/emissions.csv +++ b/datasets/ES11_fruitdelta_rivierenland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES11_fruitdelta_rivierenland/graph_values.yml b/datasets/ES11_fruitdelta_rivierenland/graph_values.yml index 621f2aeca3..d9f5d46c41 100644 --- a/datasets/ES11_fruitdelta_rivierenland/graph_values.yml +++ b/datasets/ES11_fruitdelta_rivierenland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 25000.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15645269656595184 - :network_gas: 0.13951016888726475 - :ambient_heat: 0.7040371345467833 + :electricity: 0.1894581666640645 + :network_gas: 0.14743699316330422 + :ambient_heat: 0.6631048401726313 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 102069.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2687.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21754908096246633 - :network_gas: 0.12980367615013236 - :ambient_heat: 0.6526472428874013 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769945 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES12_stedendriehoek/ES12_stedendriehoek.derived.ad b/datasets/ES12_stedendriehoek/ES12_stedendriehoek.derived.ad index 5f8d114955..f7bc7e875b 100644 --- a/datasets/ES12_stedendriehoek/ES12_stedendriehoek.derived.ad +++ b/datasets/ES12_stedendriehoek/ES12_stedendriehoek.derived.ad @@ -1,6 +1,6 @@ - area = ES12_stedendriehoek -- id = 128494 -- parent_id = 128494 +- id = 129951 +- parent_id = 129951 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES12_stedendriehoek/emissions.csv b/datasets/ES12_stedendriehoek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES12_stedendriehoek/emissions.csv +++ b/datasets/ES12_stedendriehoek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES12_stedendriehoek/graph_values.yml b/datasets/ES12_stedendriehoek/graph_values.yml index 4ffebe263a..29f82540f2 100644 --- a/datasets/ES12_stedendriehoek/graph_values.yml +++ b/datasets/ES12_stedendriehoek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 47597.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15267745011991257 - :network_gas: 0.1602740243404808 - :ambient_heat: 0.6870485255396066 + :electricity: 0.18463334627280964 + :network_gas: 0.1691487169313748 + :ambient_heat: 0.6462179367958155 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 154519.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2825.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21265658614019886 - :network_gas: 0.14937365543920234 - :ambient_heat: 0.6379697584205989 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES13_amersfoort/ES13_amersfoort.derived.ad b/datasets/ES13_amersfoort/ES13_amersfoort.derived.ad index 2c663f2b6d..35cf7e0107 100644 --- a/datasets/ES13_amersfoort/ES13_amersfoort.derived.ad +++ b/datasets/ES13_amersfoort/ES13_amersfoort.derived.ad @@ -1,6 +1,6 @@ - area = ES13_amersfoort -- id = 128495 -- parent_id = 128495 +- id = 129952 +- parent_id = 129952 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES13_amersfoort/emissions.csv b/datasets/ES13_amersfoort/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES13_amersfoort/emissions.csv +++ b/datasets/ES13_amersfoort/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES13_amersfoort/graph_values.yml b/datasets/ES13_amersfoort/graph_values.yml index d065b6e575..75ed607f96 100644 --- a/datasets/ES13_amersfoort/graph_values.yml +++ b/datasets/ES13_amersfoort/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 36895.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.155438201746677 - :network_gas: 0.1450898903932764 - :ambient_heat: 0.6994719078600465 + :electricity: 0.18816032792756884 + :network_gas: 0.15327727608728 + :ambient_heat: 0.6585623959851512 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 132523.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5929.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2162359708721812 - :network_gas: 0.13505611651127303 - :ambient_heat: 0.6487079126165458 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES14_u16/ES14_u16.derived.ad b/datasets/ES14_u16/ES14_u16.derived.ad index 9f2e7a663e..4e28722da3 100644 --- a/datasets/ES14_u16/ES14_u16.derived.ad +++ b/datasets/ES14_u16/ES14_u16.derived.ad @@ -1,6 +1,6 @@ - area = ES14_u16 -- id = 128496 -- parent_id = 128496 +- id = 129953 +- parent_id = 129953 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES14_u16/emissions.csv b/datasets/ES14_u16/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES14_u16/emissions.csv +++ b/datasets/ES14_u16/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES14_u16/graph_values.yml b/datasets/ES14_u16/graph_values.yml index 6729c40f05..cabc0ae304 100644 --- a/datasets/ES14_u16/graph_values.yml +++ b/datasets/ES14_u16/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 100948.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15755731720252591 - :network_gas: 0.1334347553861075 - :ambient_heat: 0.7090079274113665 + :electricity: 0.19087239094595942 + :network_gas: 0.14107297451294062 + :ambient_heat: 0.6680546345410999 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 421495.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 28715.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21897749856486454 - :network_gas: 0.12409000574053965 - :ambient_heat: 0.6569324956945959 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES15_noord_holland_noord/ES15_noord_holland_noord.derived.ad b/datasets/ES15_noord_holland_noord/ES15_noord_holland_noord.derived.ad index fd0d2123c6..6ee6905f00 100644 --- a/datasets/ES15_noord_holland_noord/ES15_noord_holland_noord.derived.ad +++ b/datasets/ES15_noord_holland_noord/ES15_noord_holland_noord.derived.ad @@ -1,6 +1,6 @@ - area = ES15_noord_holland_noord -- id = 128497 -- parent_id = 128497 +- id = 129954 +- parent_id = 129954 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES15_noord_holland_noord/emissions.csv b/datasets/ES15_noord_holland_noord/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES15_noord_holland_noord/emissions.csv +++ b/datasets/ES15_noord_holland_noord/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES15_noord_holland_noord/graph_values.yml b/datasets/ES15_noord_holland_noord/graph_values.yml index 48971b0374..44e6d9d7dc 100644 --- a/datasets/ES15_noord_holland_noord/graph_values.yml +++ b/datasets/ES15_noord_holland_noord/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 73310.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15420103372993466 - :network_gas: 0.15189431448535928 - :ambient_heat: 0.693904651784706 + :electricity: 0.18657891964943787 + :network_gas: 0.16039362382978944 + :ambient_heat: 0.6530274565207728 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 306393.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 12835.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21463304109572315 - :network_gas: 0.1414678356171051 - :ambient_heat: 0.6438991232871717 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES16_noord_holland_zuid/ES16_noord_holland_zuid.derived.ad b/datasets/ES16_noord_holland_zuid/ES16_noord_holland_zuid.derived.ad index 7131edc903..a9eea85252 100644 --- a/datasets/ES16_noord_holland_zuid/ES16_noord_holland_zuid.derived.ad +++ b/datasets/ES16_noord_holland_zuid/ES16_noord_holland_zuid.derived.ad @@ -1,6 +1,6 @@ - area = ES16_noord_holland_zuid -- id = 128498 -- parent_id = 128498 +- id = 129955 +- parent_id = 129955 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES16_noord_holland_zuid/emissions.csv b/datasets/ES16_noord_holland_zuid/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES16_noord_holland_zuid/emissions.csv +++ b/datasets/ES16_noord_holland_zuid/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES16_noord_holland_zuid/graph_values.yml b/datasets/ES16_noord_holland_zuid/graph_values.yml index 130ceebf92..2d4f43fd17 100644 --- a/datasets/ES16_noord_holland_zuid/graph_values.yml +++ b/datasets/ES16_noord_holland_zuid/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 309273.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15367417909859502 - :network_gas: 0.15479201495772751 - :ambient_heat: 0.6915338059436775 + :electricity: 0.1859058947229703 + :network_gas: 0.16342224046368017 + :ambient_heat: 0.6506718648133496 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1050864.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 64167.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21394988563849612 - :network_gas: 0.1442004574460131 - :ambient_heat: 0.6418496569154907 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES17_alblasserwaard/ES17_alblasserwaard.derived.ad b/datasets/ES17_alblasserwaard/ES17_alblasserwaard.derived.ad index 6f95c8d54e..d8dcd78bca 100644 --- a/datasets/ES17_alblasserwaard/ES17_alblasserwaard.derived.ad +++ b/datasets/ES17_alblasserwaard/ES17_alblasserwaard.derived.ad @@ -1,6 +1,6 @@ - area = ES17_alblasserwaard -- id = 128499 -- parent_id = 128499 +- id = 129956 +- parent_id = 129956 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES17_alblasserwaard/emissions.csv b/datasets/ES17_alblasserwaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES17_alblasserwaard/emissions.csv +++ b/datasets/ES17_alblasserwaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES17_alblasserwaard/graph_values.yml b/datasets/ES17_alblasserwaard/graph_values.yml index efbd1a6777..f8419a61f6 100644 --- a/datasets/ES17_alblasserwaard/graph_values.yml +++ b/datasets/ES17_alblasserwaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 10541.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15637580160099182 - :network_gas: 0.13993309119454506 - :ambient_heat: 0.7036911072044633 + :electricity: 0.18935976178004854 + :network_gas: 0.1478798157941853 + :ambient_heat: 0.6627604224257663 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 34603.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1086.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2174495935621774 - :network_gas: 0.130201625751288 - :ambient_heat: 0.6523487806865346 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769945 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES18_drechtsteden/ES18_drechtsteden.derived.ad b/datasets/ES18_drechtsteden/ES18_drechtsteden.derived.ad index c3d797c0ad..78f71b9daf 100644 --- a/datasets/ES18_drechtsteden/ES18_drechtsteden.derived.ad +++ b/datasets/ES18_drechtsteden/ES18_drechtsteden.derived.ad @@ -1,6 +1,6 @@ - area = ES18_drechtsteden -- id = 128501 -- parent_id = 128501 +- id = 129958 +- parent_id = 129958 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES18_drechtsteden/emissions.csv b/datasets/ES18_drechtsteden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES18_drechtsteden/emissions.csv +++ b/datasets/ES18_drechtsteden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES18_drechtsteden/graph_values.yml b/datasets/ES18_drechtsteden/graph_values.yml index 8e86ceecc2..9df88ad80b 100644 --- a/datasets/ES18_drechtsteden/graph_values.yml +++ b/datasets/ES18_drechtsteden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 29093.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1554836923695246 - :network_gas: 0.14483969196761456 - :ambient_heat: 0.6996766156628609 + :electricity: 0.18821850544526453 + :network_gas: 0.15301547687170503 + :ambient_heat: 0.6587660176830304 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 130296.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7942.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.216294879049764 - :network_gas: 0.13482048380094175 - :ambient_heat: 0.6488846371492943 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES19_goeree_overflakkee/ES19_goeree_overflakkee.derived.ad b/datasets/ES19_goeree_overflakkee/ES19_goeree_overflakkee.derived.ad index 6c5680c260..4e61be2a4b 100644 --- a/datasets/ES19_goeree_overflakkee/ES19_goeree_overflakkee.derived.ad +++ b/datasets/ES19_goeree_overflakkee/ES19_goeree_overflakkee.derived.ad @@ -1,6 +1,6 @@ - area = ES19_goeree_overflakkee -- id = 128500 -- parent_id = 128500 +- id = 129957 +- parent_id = 129957 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES19_goeree_overflakkee/emissions.csv b/datasets/ES19_goeree_overflakkee/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES19_goeree_overflakkee/emissions.csv +++ b/datasets/ES19_goeree_overflakkee/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES19_goeree_overflakkee/graph_values.yml b/datasets/ES19_goeree_overflakkee/graph_values.yml index bb01040fd1..e6b5e0c273 100644 --- a/datasets/ES19_goeree_overflakkee/graph_values.yml +++ b/datasets/ES19_goeree_overflakkee/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6955.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15561869505952025 - :network_gas: 0.14409717717263865 - :ambient_heat: 0.7002841277678411 + :electricity: 0.18839116433771247 + :network_gas: 0.15223851071028563 + :ambient_heat: 0.6593703249520019 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22021.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1305.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21646968089732332 - :network_gas: 0.13412127641070445 - :ambient_heat: 0.6494090426919722 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES20_hoeksche_waard/ES20_hoeksche_waard.derived.ad b/datasets/ES20_hoeksche_waard/ES20_hoeksche_waard.derived.ad index 6f55f0f28e..3f5ce6c511 100644 --- a/datasets/ES20_hoeksche_waard/ES20_hoeksche_waard.derived.ad +++ b/datasets/ES20_hoeksche_waard/ES20_hoeksche_waard.derived.ad @@ -1,6 +1,6 @@ - area = ES20_hoeksche_waard -- id = 128502 -- parent_id = 128502 +- id = 129959 +- parent_id = 129959 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES20_hoeksche_waard/emissions.csv b/datasets/ES20_hoeksche_waard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES20_hoeksche_waard/emissions.csv +++ b/datasets/ES20_hoeksche_waard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES20_hoeksche_waard/graph_values.yml b/datasets/ES20_hoeksche_waard/graph_values.yml index 3e44bfc118..2cbc1145a6 100644 --- a/datasets/ES20_hoeksche_waard/graph_values.yml +++ b/datasets/ES20_hoeksche_waard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5414.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15689626494702877 - :network_gas: 0.13707054279134184 - :ambient_heat: 0.7060331922616294 + :electricity: 0.19002592226283688 + :network_gas: 0.14488208920238907 + :ambient_heat: 0.665091988534774 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 38171.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 523.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21812284093759912 - :network_gas: 0.12750863624960107 - :ambient_heat: 0.6543685228127998 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES21_holland_rijnland/ES21_holland_rijnland.derived.ad b/datasets/ES21_holland_rijnland/ES21_holland_rijnland.derived.ad index f68f6bf5be..b2a247f93c 100644 --- a/datasets/ES21_holland_rijnland/ES21_holland_rijnland.derived.ad +++ b/datasets/ES21_holland_rijnland/ES21_holland_rijnland.derived.ad @@ -1,6 +1,6 @@ - area = ES21_holland_rijnland -- id = 128503 -- parent_id = 128503 +- id = 129960 +- parent_id = 129960 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES21_holland_rijnland/emissions.csv b/datasets/ES21_holland_rijnland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES21_holland_rijnland/emissions.csv +++ b/datasets/ES21_holland_rijnland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES21_holland_rijnland/graph_values.yml b/datasets/ES21_holland_rijnland/graph_values.yml index 9cacaabe6a..b2fd2c0702 100644 --- a/datasets/ES21_holland_rijnland/graph_values.yml +++ b/datasets/ES21_holland_rijnland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 63504.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15595508303107705 - :network_gas: 0.14224704332907628 - :ambient_heat: 0.7017978736398466 + :electricity: 0.18882145239181253 + :network_gas: 0.15030221161234336 + :ambient_heat: 0.6608763359958442 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 255263.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 17499.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.216905143593508 - :network_gas: 0.1323794256259657 - :ambient_heat: 0.6507154307805263 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES22_midden_holland/ES22_midden_holland.derived.ad b/datasets/ES22_midden_holland/ES22_midden_holland.derived.ad index 9549b831dd..357f3bcbb0 100644 --- a/datasets/ES22_midden_holland/ES22_midden_holland.derived.ad +++ b/datasets/ES22_midden_holland/ES22_midden_holland.derived.ad @@ -1,6 +1,6 @@ - area = ES22_midden_holland -- id = 128504 -- parent_id = 128504 +- id = 129961 +- parent_id = 129961 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES22_midden_holland/emissions.csv b/datasets/ES22_midden_holland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES22_midden_holland/emissions.csv +++ b/datasets/ES22_midden_holland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES22_midden_holland/graph_values.yml b/datasets/ES22_midden_holland/graph_values.yml index 9714750945..4897d90ec5 100644 --- a/datasets/ES22_midden_holland/graph_values.yml +++ b/datasets/ES22_midden_holland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 21981.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15639316063066316 - :network_gas: 0.13983761653135243 - :ambient_heat: 0.7037692228379843 + :electricity: 0.18938197460552256 + :network_gas: 0.1477798579321944 + :ambient_heat: 0.6628381674622832 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 103617.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 6267.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2174720534262251 - :network_gas: 0.13011178629509718 - :ambient_heat: 0.6524161602786777 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES23_rotterdam_den_haag/ES23_rotterdam_den_haag.derived.ad b/datasets/ES23_rotterdam_den_haag/ES23_rotterdam_den_haag.derived.ad index 2c70f34d44..3ff76492f8 100644 --- a/datasets/ES23_rotterdam_den_haag/ES23_rotterdam_den_haag.derived.ad +++ b/datasets/ES23_rotterdam_den_haag/ES23_rotterdam_den_haag.derived.ad @@ -1,6 +1,6 @@ - area = ES23_rotterdam_den_haag -- id = 128505 -- parent_id = 128505 +- id = 129962 +- parent_id = 129962 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES23_rotterdam_den_haag/emissions.csv b/datasets/ES23_rotterdam_den_haag/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES23_rotterdam_den_haag/emissions.csv +++ b/datasets/ES23_rotterdam_den_haag/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES23_rotterdam_den_haag/graph_values.yml b/datasets/ES23_rotterdam_den_haag/graph_values.yml index 8f285f3a2a..921628bd4f 100644 --- a/datasets/ES23_rotterdam_den_haag/graph_values.yml +++ b/datasets/ES23_rotterdam_den_haag/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 319094.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15562727912325675 - :network_gas: 0.14404996482208804 - :ambient_heat: 0.7003227560546552 + :electricity: 0.18840214129169272 + :network_gas: 0.15218911434455445 + :ambient_heat: 0.6594087443637527 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1124307.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 53798.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21648079280258095 - :network_gas: 0.13407682878967386 - :ambient_heat: 0.6494423784077451 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES24_zeeland/ES24_zeeland.derived.ad b/datasets/ES24_zeeland/ES24_zeeland.derived.ad index e9a745f73a..28187a4435 100644 --- a/datasets/ES24_zeeland/ES24_zeeland.derived.ad +++ b/datasets/ES24_zeeland/ES24_zeeland.derived.ad @@ -1,6 +1,6 @@ - area = ES24_zeeland -- id = 128506 -- parent_id = 128506 +- id = 129963 +- parent_id = 129963 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES24_zeeland/emissions.csv b/datasets/ES24_zeeland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES24_zeeland/emissions.csv +++ b/datasets/ES24_zeeland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES24_zeeland/graph_values.yml b/datasets/ES24_zeeland/graph_values.yml index 197f634057..3cd1602efe 100644 --- a/datasets/ES24_zeeland/graph_values.yml +++ b/datasets/ES24_zeeland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 56359.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1533517437854568 - :network_gas: 0.15656540917998762 - :ambient_heat: 0.6900828470345556 + :electricity: 0.18549413408147392 + :network_gas: 0.16527516608199688 + :ambient_heat: 0.6492306998365293 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 188353.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11311.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21353163732770455 - :network_gas: 0.1458734506891796 - :ambient_heat: 0.6405949119831159 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES25_hart_van_brabant/ES25_hart_van_brabant.derived.ad b/datasets/ES25_hart_van_brabant/ES25_hart_van_brabant.derived.ad index 6fb859c38c..fb29f82ec9 100644 --- a/datasets/ES25_hart_van_brabant/ES25_hart_van_brabant.derived.ad +++ b/datasets/ES25_hart_van_brabant/ES25_hart_van_brabant.derived.ad @@ -1,6 +1,6 @@ - area = ES25_hart_van_brabant -- id = 128507 -- parent_id = 128507 +- id = 129964 +- parent_id = 129964 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES25_hart_van_brabant/emissions.csv b/datasets/ES25_hart_van_brabant/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES25_hart_van_brabant/emissions.csv +++ b/datasets/ES25_hart_van_brabant/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES25_hart_van_brabant/graph_values.yml b/datasets/ES25_hart_van_brabant/graph_values.yml index 1fa1d647e8..6425c215c8 100644 --- a/datasets/ES25_hart_van_brabant/graph_values.yml +++ b/datasets/ES25_hart_van_brabant/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 50747.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15794109460851957 - :network_gas: 0.13132397965314238 - :ambient_heat: 0.7107349257383381 + :electricity: 0.19136399791191072 + :network_gas: 0.1388607399048834 + :ambient_heat: 0.6697752621832057 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 208336.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11713.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2194734442081172 - :network_gas: 0.1221062231675289 - :ambient_heat: 0.658420332624354 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES26_metropoolregio_eindhoven/ES26_metropoolregio_eindhoven.derived.ad b/datasets/ES26_metropoolregio_eindhoven/ES26_metropoolregio_eindhoven.derived.ad index 657d079017..96558f47c8 100644 --- a/datasets/ES26_metropoolregio_eindhoven/ES26_metropoolregio_eindhoven.derived.ad +++ b/datasets/ES26_metropoolregio_eindhoven/ES26_metropoolregio_eindhoven.derived.ad @@ -1,6 +1,6 @@ - area = ES26_metropoolregio_eindhoven -- id = 128508 -- parent_id = 128508 +- id = 129965 +- parent_id = 129965 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES26_metropoolregio_eindhoven/emissions.csv b/datasets/ES26_metropoolregio_eindhoven/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES26_metropoolregio_eindhoven/emissions.csv +++ b/datasets/ES26_metropoolregio_eindhoven/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES26_metropoolregio_eindhoven/graph_values.yml b/datasets/ES26_metropoolregio_eindhoven/graph_values.yml index 8c7007c422..14804248f1 100644 --- a/datasets/ES26_metropoolregio_eindhoven/graph_values.yml +++ b/datasets/ES26_metropoolregio_eindhoven/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 93791.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15590520657061233 - :network_gas: 0.14252136386163222 - :ambient_heat: 0.7015734295677555 + :electricity: 0.1887576463677888 + :network_gas: 0.15058933914373338 + :ambient_heat: 0.6606530144884778 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 353326.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11145.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2168405851841094 - :network_gas: 0.1326376592635601 - :ambient_heat: 0.6505217555523305 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES27_noordoost_brabant/ES27_noordoost_brabant.derived.ad b/datasets/ES27_noordoost_brabant/ES27_noordoost_brabant.derived.ad index dbe4bdb9d0..87f9723b8f 100644 --- a/datasets/ES27_noordoost_brabant/ES27_noordoost_brabant.derived.ad +++ b/datasets/ES27_noordoost_brabant/ES27_noordoost_brabant.derived.ad @@ -1,6 +1,6 @@ - area = ES27_noordoost_brabant -- id = 128509 -- parent_id = 128509 +- id = 129966 +- parent_id = 129966 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES27_noordoost_brabant/emissions.csv b/datasets/ES27_noordoost_brabant/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES27_noordoost_brabant/emissions.csv +++ b/datasets/ES27_noordoost_brabant/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES27_noordoost_brabant/graph_values.yml b/datasets/ES27_noordoost_brabant/graph_values.yml index 340d95f33a..ae6071b22e 100644 --- a/datasets/ES27_noordoost_brabant/graph_values.yml +++ b/datasets/ES27_noordoost_brabant/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 68878.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1561332957979275 - :network_gas: 0.14126687311139874 - :ambient_heat: 0.7025998310906738 + :electricity: 0.18904945753456 + :network_gas: 0.14927618695741415 + :ambient_heat: 0.6616743555080259 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 270924.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4437.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21713579481102288 - :network_gas: 0.13145682075590623 - :ambient_heat: 0.651407384433071 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES28_west_brabant/ES28_west_brabant.derived.ad b/datasets/ES28_west_brabant/ES28_west_brabant.derived.ad index b9cfd0b170..c833e5bae8 100644 --- a/datasets/ES28_west_brabant/ES28_west_brabant.derived.ad +++ b/datasets/ES28_west_brabant/ES28_west_brabant.derived.ad @@ -1,6 +1,6 @@ - area = ES28_west_brabant -- id = 128510 -- parent_id = 128510 +- id = 129967 +- parent_id = 129967 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES28_west_brabant/emissions.csv b/datasets/ES28_west_brabant/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES28_west_brabant/emissions.csv +++ b/datasets/ES28_west_brabant/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES28_west_brabant/graph_values.yml b/datasets/ES28_west_brabant/graph_values.yml index e755fff379..0c98cfafd4 100644 --- a/datasets/ES28_west_brabant/graph_values.yml +++ b/datasets/ES28_west_brabant/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 81124.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1563044557470506 - :network_gas: 0.14032549339122166 - :ambient_heat: 0.7033700508617278 + :electricity: 0.18926846318161986 + :network_gas: 0.14829066009278097 + :ambient_heat: 0.6624408767255991 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 317177.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 12203.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21735727956617681 - :network_gas: 0.13057088173529033 - :ambient_heat: 0.6520718386985328 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.51830499 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324305 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES29_noord_en_midden_limburg/ES29_noord_en_midden_limburg.derived.ad b/datasets/ES29_noord_en_midden_limburg/ES29_noord_en_midden_limburg.derived.ad index 6d4662b4bf..11a8fe4bba 100644 --- a/datasets/ES29_noord_en_midden_limburg/ES29_noord_en_midden_limburg.derived.ad +++ b/datasets/ES29_noord_en_midden_limburg/ES29_noord_en_midden_limburg.derived.ad @@ -1,6 +1,6 @@ - area = ES29_noord_en_midden_limburg -- id = 128511 -- parent_id = 128511 +- id = 129968 +- parent_id = 129968 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES29_noord_en_midden_limburg/emissions.csv b/datasets/ES29_noord_en_midden_limburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES29_noord_en_midden_limburg/emissions.csv +++ b/datasets/ES29_noord_en_midden_limburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES29_noord_en_midden_limburg/graph_values.yml b/datasets/ES29_noord_en_midden_limburg/graph_values.yml index 5aa81cc7b0..71c931f6f8 100644 --- a/datasets/ES29_noord_en_midden_limburg/graph_values.yml +++ b/datasets/ES29_noord_en_midden_limburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 63679.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15574709045411567 - :network_gas: 0.14339100250236372 - :ambient_heat: 0.7008619070435206 + :electricity: 0.1885553886705303 + :network_gas: 0.15149950012315608 + :ambient_heat: 0.6599451112063136 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 218729.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5342.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21663590812154976 - :network_gas: 0.1334563675137987 - :ambient_heat: 0.6499077243646516 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES30_zuid_limburg/ES30_zuid_limburg.derived.ad b/datasets/ES30_zuid_limburg/ES30_zuid_limburg.derived.ad index cdfccfaa9a..2bc57a8130 100644 --- a/datasets/ES30_zuid_limburg/ES30_zuid_limburg.derived.ad +++ b/datasets/ES30_zuid_limburg/ES30_zuid_limburg.derived.ad @@ -1,6 +1,6 @@ - area = ES30_zuid_limburg -- id = 128512 -- parent_id = 128512 +- id = 129969 +- parent_id = 129969 - group = res - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES30_zuid_limburg/emissions.csv b/datasets/ES30_zuid_limburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/ES30_zuid_limburg/emissions.csv +++ b/datasets/ES30_zuid_limburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/ES30_zuid_limburg/graph_values.yml b/datasets/ES30_zuid_limburg/graph_values.yml index 431e8b14ac..ccbfb7e4bf 100644 --- a/datasets/ES30_zuid_limburg/graph_values.yml +++ b/datasets/ES30_zuid_limburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 84424.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15390817462611026 - :network_gas: 0.15350503955639366 - :ambient_heat: 0.6925867858174961 + :electricity: 0.18620477811092706 + :network_gas: 0.16207726323510926 + :ambient_heat: 0.6517179586539636 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 299591.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 19112.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21425333871996388 - :network_gas: 0.1429866451201421 - :ambient_heat: 0.6427600161598939 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769945 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/ES_spain/ES_spain.derived.ad b/datasets/ES_spain/ES_spain.derived.ad index 5030c90e9e..5320624dd9 100644 --- a/datasets/ES_spain/ES_spain.derived.ad +++ b/datasets/ES_spain/ES_spain.derived.ad @@ -1,6 +1,6 @@ - area = ES_spain -- id = 128444 -- parent_id = 128444 +- id = 128867 +- parent_id = 128867 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/ES_spain/emissions.csv b/datasets/ES_spain/emissions.csv index f7e386778d..1f8f4950f3 100644 --- a/datasets/ES_spain/emissions.csv +++ b/datasets/ES_spain/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,141.60953 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,559.55508 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,33338.80158 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,145.63078 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,139.85696 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,218.70589 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,480.45192 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,43.95745 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,361.63688 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,240.21712 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,805.72328 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,392.63911 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,36.71043 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,3157.12648 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,344.78303 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,132.32245 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,1275.85374 -Industry,Other,non_energetic,co2,kton CO2-eq,12390.71344 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,6396.20304 -Industry,Other metals,non_energetic,co2,kton CO2-eq,702.08705 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,2.46417 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,10.19017 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,2.57084 -Industry,Steel,non_energetic,co2,kton CO2-eq,1424.83608 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,22.26774 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,381.85657 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,45611.24355 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,3.76891 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.13395 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,998.66236 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,14731.05395 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,6007.16287 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,70.54712 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,141.60953 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,597.84514 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,559.55508 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,32424.73204 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,33338.80158 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,3809.28154 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,18.94598 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,145.63078 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4741.2048 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,34.97824 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,139.85696 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,11586.52093 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,110.26316 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,218.70589 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,65593.30129 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,262.87025 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,480.45192 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2089.4477 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,27.79442 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,43.95745 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,292.39211 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,361.63688 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,1994.60666 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,240.21712 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,12801.78565 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,999.2284 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,805.72328 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,610.293 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,392.63911 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1046.27245 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,36.71043 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,2029.95865 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,3157.12648 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,2752.21158 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,344.78303 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,399.71957 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,2427.69471 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,132.32245 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,44857.47942 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,343.79254 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1275.85374 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,15312.82364 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,12390.71344 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,425.6738 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,6396.20304 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,425.65445 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,702.08705 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,1.36824 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,2.46417 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,10858.11942 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,19.94318 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,10.19017 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,1476.6012 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,3.1597 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,2.57084 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,2500.73115 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1424.83608 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,31.12331 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,22.26774 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,834.81133 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,381.85657 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,34730.80401 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,45611.24355 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,297.88539 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2.60369 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3.76891 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,19.12966 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.02541 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.13395 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,60396.25535 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,948.89133 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,998.66236 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,124.37949 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,13408.54088 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,14731.05395 diff --git a/datasets/ES_spain/graph_values.yml b/datasets/ES_spain/graph_values.yml index 18686f02c1..64adfb2495 100644 --- a/datasets/ES_spain/graph_values.yml +++ b/datasets/ES_spain/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.0 + :electricity: 0.7946748232 energy_chp_combined_cycle_ht_network_gas: demand: 22821.48057013392 full_load_hours: 6555.214356 output: :steam_hot_water: 0.0 :electricity: 0.7946748232 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.0 + :electricity: 0.7946748232 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 6555.214356 diff --git a/datasets/EU27_european_union_27_countries/EU27_european_union_27_countries.derived.ad b/datasets/EU27_european_union_27_countries/EU27_european_union_27_countries.derived.ad index 4302627d92..5760624a09 100644 --- a/datasets/EU27_european_union_27_countries/EU27_european_union_27_countries.derived.ad +++ b/datasets/EU27_european_union_27_countries/EU27_european_union_27_countries.derived.ad @@ -1,6 +1,6 @@ - area = EU27_european_union_27_countries -- id = 128463 -- parent_id = 128463 +- id = 128886 +- parent_id = 128886 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/EU27_european_union_27_countries/emissions.csv b/datasets/EU27_european_union_27_countries/emissions.csv index 84e6a0cecd..d1ce75afe5 100644 --- a/datasets/EU27_european_union_27_countries/emissions.csv +++ b/datasets/EU27_european_union_27_countries/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,5297.27536 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,9378.87843 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,370869.08459 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,1354.38871 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,1030.86238 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,1501.74002 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,8100.38133 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,430.56311 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,10991.35741 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,47112.09293 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.64794 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,18494.37169 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,3073.6856 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,360.44603 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,26798.46765 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,6217.93847 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,2748.14339 -Industry,Food,non_energetic,co2,kton CO2-eq,81.48018 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,5608.30478 -Industry,Other,non_energetic,co2,kton CO2-eq,112552.20853 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,88181.37779 -Industry,Other metals,non_energetic,co2,kton CO2-eq,4521.80185 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,135.65774 -Industry,Paper,non_energetic,co2,kton CO2-eq,23.65133 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,87.80617 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,375.39363 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,184.44027 -Industry,Steel,non_energetic,co2,kton CO2-eq,66661.84693 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,153.40264 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,22281.91434 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,269599.53798 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,3034.01954 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,54.3066 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,43.24902 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,9026.50937 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,2843.91744 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,109605.51013 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,77825.15407 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4078.33392 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,5297.27536 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,14182.71402 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,9378.87843 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,470424.10095 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,370869.08459 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,169584.39235 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2590.14242 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1354.38871 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,53659.80381 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,437.91753 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,1030.86238 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,100978.10193 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,1136.87263 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,1501.74002 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,1227037.73969 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,5879.66 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,8100.38133 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,100783.18118 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,1005.45326 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,430.56311 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,15612.64638 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,10991.35741 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,145033.81632 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,47112.09293 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,256.77804 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,34.70619 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.64794 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,426098.31328 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,23640.96643 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18494.37169 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,4316.5632 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,3073.6856 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,17316.82884 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,360.44603 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,20433.47784 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,26798.46765 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,62443.46733 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,6217.93847 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,30590.77823 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,40720.56409 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,2748.14339 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,93.64086 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,81.48018 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,723447.5092 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,5677.31514 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,5608.30478 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,143732.9517 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,112552.20853 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,12395.21125 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,88181.37779 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,7126.32672 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,4521.80185 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,1269.67986 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,135.65774 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.65696 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,23.65133 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,63.43582 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,87.80617 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,106853.48411 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,490.93838 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,375.39363 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,7577.8555 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,485.00733 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,184.44027 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,103475.32199 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,66661.84693 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,405.99971 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,153.40264 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,25607.71385 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,22281.91434 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,234402.93924 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,269599.53798 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,6444.14989 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,3034.01954 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,21545.15083 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,507.98172 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,54.3066 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,5985.4592 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,65.88959 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,43.24902 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,663210.62023 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,12069.13895 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,9026.50937 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,3817.49804 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,2843.91744 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,180366.59673 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,109605.51013 diff --git a/datasets/EU27_european_union_27_countries/graph_values.yml b/datasets/EU27_european_union_27_countries/graph_values.yml index f98ddc7275..5f855b2315 100644 --- a/datasets/EU27_european_union_27_countries/graph_values.yml +++ b/datasets/EU27_european_union_27_countries/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.30931524447298236 :electricity: 0.2715080002692332 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.1716980601601088 + :electricity: 0.5081873148 energy_chp_combined_cycle_ht_network_gas: demand: 845666.149506052 full_load_hours: 4589.253604 output: :steam_hot_water: 0.1716980601601088 :electricity: 0.5081873148 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.1716980601601088 + :electricity: 0.5081873148 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4589.253604 diff --git a/datasets/FI_finland/FI_finland.derived.ad b/datasets/FI_finland/FI_finland.derived.ad index 9e0b062eb8..14d0fe65e6 100644 --- a/datasets/FI_finland/FI_finland.derived.ad +++ b/datasets/FI_finland/FI_finland.derived.ad @@ -1,6 +1,6 @@ - area = FI_finland -- id = 128446 -- parent_id = 128446 +- id = 128869 +- parent_id = 128869 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/FI_finland/emissions.csv b/datasets/FI_finland/emissions.csv index 9c15c15420..f251f5b93f 100644 --- a/datasets/FI_finland/emissions.csv +++ b/datasets/FI_finland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,18.10307 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,190.33147 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,6255.54031 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,14.02472 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,19.01825 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,8.9778 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,254.28832 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.94853 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,65.14468 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,19.71175 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,250.15522 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1137.73507 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1.036 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,182.48182 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,161.50602 -Industry,Other,non_energetic,co2,kton CO2-eq,1127.07865 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1007.61307 -Industry,Other metals,non_energetic,co2,kton CO2-eq,22.75942 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,18.87421 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,10.23213 -Industry,Steel,non_energetic,co2,kton CO2-eq,1852.20395 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.00234 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,2650.59435 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,9366.89917 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,53.35918 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,7.22995 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,92.77513 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1977.81417 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1693.56142 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,21.96544 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18.10307 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,647.38745 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,190.33147 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,6596.40991 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,6255.54031 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2472.68606 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,27.64048 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,14.02472 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,1007.72976 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,7.44945 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,19.01825 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,1831.99523 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,16.52613 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,8.9778 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,16453.36654 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,99.15788 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,254.28832 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,347.1529 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.62321 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.94853 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,111.49344 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,65.14468 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,6.18504 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,19.71175 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,3147.71406 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,209.36114 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,250.15522 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,177.27743 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1137.73507 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5.152 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,1.036 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,92.9532 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,1415.37825 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,182.48182 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,13192.36024 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,166.00155 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,161.50602 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1435.91783 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1127.07865 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,113.45872 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1007.61307 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,8.90946 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,22.75942 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2042.4941 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,14.7415 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,18.87421 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,7.05637 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,10.23213 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,1967.15458 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1852.20395 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.00136 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.00234 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,3191.67357 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,2650.59435 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,28998.52272 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,9366.89917 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,166.3446 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,53.35918 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,1126.45401 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,11.77856 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,7.22995 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,11997.44526 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,270.90602 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,92.77513 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,5207.60854 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1977.81417 diff --git a/datasets/FI_finland/graph_values.yml b/datasets/FI_finland/graph_values.yml index f59b9cf05c..d182682ef6 100644 --- a/datasets/FI_finland/graph_values.yml +++ b/datasets/FI_finland/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.7215663691333142 :electricity: 0.15548517132162396 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.4561942182573191 + :electricity: 0.47110630384483976 energy_chp_combined_cycle_ht_network_gas: demand: 14477.212289251285 full_load_hours: 1835.070324 output: :steam_hot_water: 0.4561942182573191 :electricity: 0.47110630384483976 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.4561942182573191 + :electricity: 0.47110630384483976 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 1835.070324 diff --git a/datasets/FR_france/FR_france.derived.ad b/datasets/FR_france/FR_france.derived.ad index 7f1840d6dd..267bf19d65 100644 --- a/datasets/FR_france/FR_france.derived.ad +++ b/datasets/FR_france/FR_france.derived.ad @@ -1,6 +1,6 @@ - area = FR_france -- id = 128447 -- parent_id = 128447 +- id = 128870 +- parent_id = 128870 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/FR_france/emissions.csv b/datasets/FR_france/emissions.csv index c3defe2490..d52dfb036b 100644 --- a/datasets/FR_france/emissions.csv +++ b/datasets/FR_france/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,836.91508 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,2028.59964 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,67121.58389 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,97.18329 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,141.54316 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,53.00543 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,276.80702 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,1.94356 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,497.86509 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,1131.82537 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,2262.1054 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,666.79068 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,60.32305 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,5261.63613 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,509.9257 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,473.36191 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,602.78658 -Industry,Other,non_energetic,co2,kton CO2-eq,10724.62779 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,13514.68455 -Industry,Other metals,non_energetic,co2,kton CO2-eq,1485.04155 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,40.33034 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.06396 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,7.59028 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,7.69627 -Industry,Steel,non_energetic,co2,kton CO2-eq,11143.92472 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,26.95835 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,2568.79551 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,18598.13641 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,820.38575 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,10.44767 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,3.82395 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,1431.38957 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,1814.89417 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,17503.57244 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,9758.95878 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,828.79258 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,836.91508 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,1907.99056 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,2028.59964 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,76268.82449 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,67121.58389 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,26620.39295 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,136.81118 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,97.18329 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,9115.99485 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,70.80077 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,141.54316 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,8060.50573 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,75.52298 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,53.00543 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,49388.48671 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,390.16672 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,276.80702 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,4738.45831 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,62.22792 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,1.94356 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,1411.43317 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,497.86509 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,7402.63243 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,1131.82537 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,54003.24244 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,5553.65948 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,2262.1054 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,533.646 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,666.79068 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,3210.97663 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,60.32305 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,5523.1459 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,5261.63613 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,20927.2541 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,509.9257 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2019.32996 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5663.05 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,473.36191 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,65470.39538 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,536.73311 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,602.78658 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,16023.9813 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,10724.62779 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,1887.98238 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,13514.68455 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,1583.3493 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,1485.04155 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,749.39822 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,40.33034 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.04373 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.06396 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11935.46473 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,22.3184 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,7.59028 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,2950.10366 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,25.74647 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,7.69627 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,15787.54541 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,11143.92472 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,151.08184 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,26.95835 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,3496.18661 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,2568.79551 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,20417.17142 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,18598.13641 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,1671.14943 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,820.38575 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,4464.24561 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,34.56086 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,10.44767 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,210.49501 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,4.29544 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,3.82395 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,122641.2498 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1968.98582 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1431.38957 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,2194.20795 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,1814.89417 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,15839.02698 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,17503.57244 diff --git a/datasets/FR_france/graph_values.yml b/datasets/FR_france/graph_values.yml index 74a031630c..1e28cdb94b 100644 --- a/datasets/FR_france/graph_values.yml +++ b/datasets/FR_france/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.5462190095362744 + :electricity: 0.5825997057854534 energy_chp_combined_cycle_ht_network_gas: demand: 1371.312943975654 full_load_hours: 2821.620894 output: :steam_hot_water: 0.5462190095362744 :electricity: 0.5825997057854534 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.5462190095362744 + :electricity: 0.5825997057854534 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2821.620894 diff --git a/datasets/GB_great_britain/GB_great_britain.derived.ad b/datasets/GB_great_britain/GB_great_britain.derived.ad index bc8deec7d4..5b5b24d0ea 100644 --- a/datasets/GB_great_britain/GB_great_britain.derived.ad +++ b/datasets/GB_great_britain/GB_great_britain.derived.ad @@ -1,6 +1,6 @@ - area = GB_great_britain -- id = 128466 -- parent_id = 128466 +- id = 128889 +- parent_id = 128889 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GB_great_britain/emissions.csv b/datasets/GB_great_britain/emissions.csv index 2e97d6223d..4f6aeb4df4 100644 --- a/datasets/GB_great_britain/emissions.csv +++ b/datasets/GB_great_britain/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,72.88602 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,1427.42404 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,37074.80515 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,56.38575 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,307.91235 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,120.99274 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,661.9959 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,383.20546 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,4283.23747 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,5850.35432 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,621.9194 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,60.66016 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.61768 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,2830.36353 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,196.60591 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,34.49572 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,318.93274 -Industry,Other,non_energetic,co2,kton CO2-eq,6733.28839 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,13282.16349 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,87.73359 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,19.20809 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.16492 -Industry,Steel,non_energetic,co2,kton CO2-eq,10546.50731 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,12.39233 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,6449.52067 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5653.72865 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,16.08869 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,6.6268 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,1112.32356 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,301.95516 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,19802.55444 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,3791.53141 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,45.88843 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,72.88602 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,1234.06776 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,1380.8427 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,44593.10066 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,37074.80515 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,27851.96908 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,129.4787 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,56.38575 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,15327.44257 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,137.58249 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,307.91235 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,8755.91579 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,113.33277 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,120.99274 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,198916.50772 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,1067.25175 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,661.9959 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,16026.34549 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,411.83252 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,383.20546 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,6787.09239 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,4282.79209 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,38321.67967 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,5850.35432 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,497.72019 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.84 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,75083.88738 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1707.65461 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,621.9194 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,450.31917 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,60.66016 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1396.75682 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,5.61768 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,4582.87245 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,2830.36353 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,30046.04721 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,196.60591 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,1894.99621 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,3130.10035 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,34.49572 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,72703.65856 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,361.59812 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,318.93274 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,10355.54448 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,6549.13533 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,1473.37249 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,13282.16349 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,1350.64572 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,417.49153 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,87.73359 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,17831.3373 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,37.8656 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,19.20809 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.12288 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.16492 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,23628.28246 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,10546.50731 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,43.92174 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,12.39233 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,1672.13469 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,6837.80689 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,6449.52067 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,6789.85736 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,5102.07819 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,52.0135 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,16.08869 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,67.03022 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.80861 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,6.6268 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,117741.66319 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2651.05152 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1112.32356 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,1442.43853 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,300.5542 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,69150.89768 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,19802.55444 diff --git a/datasets/GB_great_britain/graph_values.yml b/datasets/GB_great_britain/graph_values.yml index 3e3880fe69..0e73b6ca12 100644 --- a/datasets/GB_great_britain/graph_values.yml +++ b/datasets/GB_great_britain/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.039780299 :electricity: 0.369935965 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 5265.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5265.0 diff --git a/datasets/GM0014_groningen/GM0014_groningen.derived.ad b/datasets/GM0014_groningen/GM0014_groningen.derived.ad index 12f3e4e463..c73f4a4b02 100644 --- a/datasets/GM0014_groningen/GM0014_groningen.derived.ad +++ b/datasets/GM0014_groningen/GM0014_groningen.derived.ad @@ -1,6 +1,6 @@ - area = GM0014_groningen -- id = 128616 -- parent_id = 128616 +- id = 130073 +- parent_id = 130073 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0014_groningen/emissions.csv b/datasets/GM0014_groningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0014_groningen/emissions.csv +++ b/datasets/GM0014_groningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0014_groningen/graph_values.yml b/datasets/GM0014_groningen/graph_values.yml index a88b15b491..c3a02e3842 100644 --- a/datasets/GM0014_groningen/graph_values.yml +++ b/datasets/GM0014_groningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 41967.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15019705220995302 - :network_gas: 0.17391621284525827 - :ambient_heat: 0.6758867349447886 + :electricity: 0.1814705539965665 + :network_gas: 0.18338130315614792 + :ambient_heat: 0.6351481428472856 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 118786.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 6253.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2094331710889209 - :network_gas: 0.16226731564431426 - :ambient_heat: 0.6282995132667649 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0034_almere/GM0034_almere.derived.ad b/datasets/GM0034_almere/GM0034_almere.derived.ad index a25dced0cf..660574beff 100644 --- a/datasets/GM0034_almere/GM0034_almere.derived.ad +++ b/datasets/GM0034_almere/GM0034_almere.derived.ad @@ -1,6 +1,6 @@ - area = GM0034_almere -- id = 128521 -- parent_id = 128521 +- id = 129978 +- parent_id = 129978 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0034_almere/emissions.csv b/datasets/GM0034_almere/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0034_almere/emissions.csv +++ b/datasets/GM0034_almere/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0034_almere/graph_values.yml b/datasets/GM0034_almere/graph_values.yml index 62b9ca3275..d81dd5e745 100644 --- a/datasets/GM0034_almere/graph_values.yml +++ b/datasets/GM0034_almere/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 19386.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.17109387622439878 - :network_gas: 0.05898368076580681 - :ambient_heat: 0.7699224430097944 + :electricity: 0.2082956301439147 + :network_gas: 0.06266828253794311 + :ambient_heat: 0.7290360873181422 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 85128.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 0.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.23636878823013552 - :network_gas: 0.05452484707945555 - :ambient_heat: 0.709106364690409 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0037_stadskanaal/GM0037_stadskanaal.derived.ad b/datasets/GM0037_stadskanaal/GM0037_stadskanaal.derived.ad index 9edaea4203..700d6f9115 100644 --- a/datasets/GM0037_stadskanaal/GM0037_stadskanaal.derived.ad +++ b/datasets/GM0037_stadskanaal/GM0037_stadskanaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0037_stadskanaal -- id = 128761 -- parent_id = 128761 +- id = 130218 +- parent_id = 130218 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0037_stadskanaal/emissions.csv b/datasets/GM0037_stadskanaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0037_stadskanaal/emissions.csv +++ b/datasets/GM0037_stadskanaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0037_stadskanaal/graph_values.yml b/datasets/GM0037_stadskanaal/graph_values.yml index 592d327818..f9acf5a257 100644 --- a/datasets/GM0037_stadskanaal/graph_values.yml +++ b/datasets/GM0037_stadskanaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3013.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14834373772278286 - :network_gas: 0.1841094425246942 - :ambient_heat: 0.667546819752523 + :electricity: 0.17911106849699207 + :network_gas: 0.19399900355684707 + :ambient_heat: 0.6268899279461608 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15182.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 21.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20702002704604286 - :network_gas: 0.17191989181582618 - :ambient_heat: 0.6210600811381308 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0047_veendam/GM0047_veendam.derived.ad b/datasets/GM0047_veendam/GM0047_veendam.derived.ad index 9d394cfd14..813b5d7c00 100644 --- a/datasets/GM0047_veendam/GM0047_veendam.derived.ad +++ b/datasets/GM0047_veendam/GM0047_veendam.derived.ad @@ -1,6 +1,6 @@ - area = GM0047_veendam -- id = 128788 -- parent_id = 128788 +- id = 130245 +- parent_id = 130245 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0047_veendam/emissions.csv b/datasets/GM0047_veendam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0047_veendam/emissions.csv +++ b/datasets/GM0047_veendam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0047_veendam/graph_values.yml b/datasets/GM0047_veendam/graph_values.yml index 1b433e311e..d4d84ce5fb 100644 --- a/datasets/GM0047_veendam/graph_values.yml +++ b/datasets/GM0047_veendam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2545.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1487848263731086 - :network_gas: 0.1816834549479024 - :ambient_heat: 0.6695317186789889 + :electricity: 0.1796723385844445 + :network_gas: 0.1914732844398958 + :ambient_heat: 0.6288543769756596 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12890.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 98.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2075947169980214 - :network_gas: 0.16962113200791207 - :ambient_heat: 0.6227841509940665 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0050_zeewolde/GM0050_zeewolde.derived.ad b/datasets/GM0050_zeewolde/GM0050_zeewolde.derived.ad index 91c15c65b7..cc79c9bbda 100644 --- a/datasets/GM0050_zeewolde/GM0050_zeewolde.derived.ad +++ b/datasets/GM0050_zeewolde/GM0050_zeewolde.derived.ad @@ -1,6 +1,6 @@ - area = GM0050_zeewolde -- id = 128826 -- parent_id = 128826 +- id = 130283 +- parent_id = 130283 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0050_zeewolde/emissions.csv b/datasets/GM0050_zeewolde/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0050_zeewolde/emissions.csv +++ b/datasets/GM0050_zeewolde/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0050_zeewolde/graph_values.yml b/datasets/GM0050_zeewolde/graph_values.yml index 4584d43950..9e332bd9bc 100644 --- a/datasets/GM0050_zeewolde/graph_values.yml +++ b/datasets/GM0050_zeewolde/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2749.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.160958893706962 - :network_gas: 0.114726084611709 - :ambient_heat: 0.7243150216813291 + :electricity: 0.19523450689236163 + :network_gas: 0.12144342381624666 + :ambient_heat: 0.6833220692913917 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8836.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 0.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22336738094554506 - :network_gas: 0.10653047621781739 - :ambient_heat: 0.6701021428366376 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0059_achtkarspelen/GM0059_achtkarspelen.derived.ad b/datasets/GM0059_achtkarspelen/GM0059_achtkarspelen.derived.ad index 4fc7310781..524792ba32 100644 --- a/datasets/GM0059_achtkarspelen/GM0059_achtkarspelen.derived.ad +++ b/datasets/GM0059_achtkarspelen/GM0059_achtkarspelen.derived.ad @@ -1,6 +1,6 @@ - area = GM0059_achtkarspelen -- id = 128516 -- parent_id = 128516 +- id = 129973 +- parent_id = 129973 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0059_achtkarspelen/emissions.csv b/datasets/GM0059_achtkarspelen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0059_achtkarspelen/emissions.csv +++ b/datasets/GM0059_achtkarspelen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0059_achtkarspelen/graph_values.yml b/datasets/GM0059_achtkarspelen/graph_values.yml index 34b533d0d2..c9477adb06 100644 --- a/datasets/GM0059_achtkarspelen/graph_values.yml +++ b/datasets/GM0059_achtkarspelen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2220.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1506233467278647 - :network_gas: 0.17157159299674402 - :ambient_heat: 0.6778050602753912 + :electricity: 0.18201372499969964 + :network_gas: 0.18093703003870126 + :ambient_heat: 0.6370492449615991 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12144.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 16.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20998767196346685 - :network_gas: 0.16004931214613038 - :ambient_heat: 0.6299630158904028 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0060_ameland/GM0060_ameland.derived.ad b/datasets/GM0060_ameland/GM0060_ameland.derived.ad index 216c7e9980..75228a9583 100644 --- a/datasets/GM0060_ameland/GM0060_ameland.derived.ad +++ b/datasets/GM0060_ameland/GM0060_ameland.derived.ad @@ -1,6 +1,6 @@ - area = GM0060_ameland -- id = 128524 -- parent_id = 128524 +- id = 129981 +- parent_id = 129981 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0060_ameland/emissions.csv b/datasets/GM0060_ameland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0060_ameland/emissions.csv +++ b/datasets/GM0060_ameland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0060_ameland/graph_values.yml b/datasets/GM0060_ameland/graph_values.yml index a620fea366..2fdc8a1b20 100644 --- a/datasets/GM0060_ameland/graph_values.yml +++ b/datasets/GM0060_ameland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2193.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14894514981217385 - :network_gas: 0.18080167603304376 - :ambient_heat: 0.6702531741547824 + :electricity: 0.17987638906524778 + :network_gas: 0.19055505592262884 + :ambient_heat: 0.6295685550121235 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1748.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20780354473563287 - :network_gas: 0.16878582105746626 - :ambient_heat: 0.6234106342069009 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0072_harlingen/GM0072_harlingen.derived.ad b/datasets/GM0072_harlingen/GM0072_harlingen.derived.ad index c05e1727d6..7941bc540f 100644 --- a/datasets/GM0072_harlingen/GM0072_harlingen.derived.ad +++ b/datasets/GM0072_harlingen/GM0072_harlingen.derived.ad @@ -1,6 +1,6 @@ - area = GM0072_harlingen -- id = 128625 -- parent_id = 128625 +- id = 130082 +- parent_id = 130082 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0072_harlingen/emissions.csv b/datasets/GM0072_harlingen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0072_harlingen/emissions.csv +++ b/datasets/GM0072_harlingen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0072_harlingen/graph_values.yml b/datasets/GM0072_harlingen/graph_values.yml index 709e442ac1..d76987b332 100644 --- a/datasets/GM0072_harlingen/graph_values.yml +++ b/datasets/GM0072_harlingen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1555.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15255911608898823 - :network_gas: 0.16092486151056473 - :ambient_heat: 0.6865160224004471 + :electricity: 0.184482333989233 + :network_gas: 0.16982827320927166 + :ambient_heat: 0.6456893928014954 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7885.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 893.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21250296665173254 - :network_gas: 0.14998813339306755 - :ambient_heat: 0.6375088999551999 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0074_heerenveen/GM0074_heerenveen.derived.ad b/datasets/GM0074_heerenveen/GM0074_heerenveen.derived.ad index 7c29fd7ae4..60610eb517 100644 --- a/datasets/GM0074_heerenveen/GM0074_heerenveen.derived.ad +++ b/datasets/GM0074_heerenveen/GM0074_heerenveen.derived.ad @@ -1,6 +1,6 @@ - area = GM0074_heerenveen -- id = 128630 -- parent_id = 128630 +- id = 130087 +- parent_id = 130087 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0074_heerenveen/emissions.csv b/datasets/GM0074_heerenveen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0074_heerenveen/emissions.csv +++ b/datasets/GM0074_heerenveen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0074_heerenveen/graph_values.yml b/datasets/GM0074_heerenveen/graph_values.yml index 513f669e45..6e75f15b15 100644 --- a/datasets/GM0074_heerenveen/graph_values.yml +++ b/datasets/GM0074_heerenveen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6577.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1523083200991893 - :network_gas: 0.1623042394544588 - :ambient_heat: 0.6853874404463518 + :electricity: 0.18416230850761062 + :network_gas: 0.1712683899995926 + :ambient_heat: 0.6445693014927968 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23643.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 228.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2121773326834904 - :network_gas: 0.1512906692660361 - :ambient_heat: 0.6365319980504734 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0080_leeuwarden/GM0080_leeuwarden.derived.ad b/datasets/GM0080_leeuwarden/GM0080_leeuwarden.derived.ad index 1c71e3307c..674a0c4655 100644 --- a/datasets/GM0080_leeuwarden/GM0080_leeuwarden.derived.ad +++ b/datasets/GM0080_leeuwarden/GM0080_leeuwarden.derived.ad @@ -1,6 +1,6 @@ - area = GM0080_leeuwarden -- id = 128665 -- parent_id = 128665 +- id = 130122 +- parent_id = 130122 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0080_leeuwarden/emissions.csv b/datasets/GM0080_leeuwarden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0080_leeuwarden/emissions.csv +++ b/datasets/GM0080_leeuwarden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0080_leeuwarden/graph_values.yml b/datasets/GM0080_leeuwarden/graph_values.yml index 5b7f8358d4..5983a07afb 100644 --- a/datasets/GM0080_leeuwarden/graph_values.yml +++ b/datasets/GM0080_leeuwarden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 20546.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15199768551292586 - :network_gas: 0.16401272967890768 - :ambient_heat: 0.6839895848081664 + :electricity: 0.1837660073284124 + :network_gas: 0.17305174793501102 + :ambient_heat: 0.6431822447365767 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 62935.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8069.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21177390327335238 - :network_gas: 0.1529043869065883 - :ambient_heat: 0.6353217098200594 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0085_ooststellingwerf/GM0085_ooststellingwerf.derived.ad b/datasets/GM0085_ooststellingwerf/GM0085_ooststellingwerf.derived.ad index e6d49500df..208099a7cf 100644 --- a/datasets/GM0085_ooststellingwerf/GM0085_ooststellingwerf.derived.ad +++ b/datasets/GM0085_ooststellingwerf/GM0085_ooststellingwerf.derived.ad @@ -1,6 +1,6 @@ - area = GM0085_ooststellingwerf -- id = 128715 -- parent_id = 128715 +- id = 130172 +- parent_id = 130172 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0085_ooststellingwerf/emissions.csv b/datasets/GM0085_ooststellingwerf/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0085_ooststellingwerf/emissions.csv +++ b/datasets/GM0085_ooststellingwerf/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0085_ooststellingwerf/graph_values.yml b/datasets/GM0085_ooststellingwerf/graph_values.yml index 9b1c29c0cf..d7e2fd4eb9 100644 --- a/datasets/GM0085_ooststellingwerf/graph_values.yml +++ b/datasets/GM0085_ooststellingwerf/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2637.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14998955085653634 - :network_gas: 0.17505747028905003 - :ambient_heat: 0.6749529788544136 + :electricity: 0.181206223043272 + :network_gas: 0.1845707941995209 + :ambient_heat: 0.634222982757207 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11388.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20916318824721178 - :network_gas: 0.16334724701115064 - :ambient_heat: 0.6274895647416376 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0086_opsterland/GM0086_opsterland.derived.ad b/datasets/GM0086_opsterland/GM0086_opsterland.derived.ad index a06eec01c0..8e27702140 100644 --- a/datasets/GM0086_opsterland/GM0086_opsterland.derived.ad +++ b/datasets/GM0086_opsterland/GM0086_opsterland.derived.ad @@ -1,6 +1,6 @@ - area = GM0086_opsterland -- id = 128718 -- parent_id = 128718 +- id = 130175 +- parent_id = 130175 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0086_opsterland/emissions.csv b/datasets/GM0086_opsterland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0086_opsterland/emissions.csv +++ b/datasets/GM0086_opsterland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0086_opsterland/graph_values.yml b/datasets/GM0086_opsterland/graph_values.yml index d430a94bca..464da5252a 100644 --- a/datasets/GM0086_opsterland/graph_values.yml +++ b/datasets/GM0086_opsterland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2168.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15203369682146184 - :network_gas: 0.1638146674819598 - :ambient_heat: 0.6841516356965782 + :electricity: 0.18381194523617622 + :network_gas: 0.1728450270453256 + :ambient_heat: 0.6433430277184982 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13088.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 64.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21182067784179104 - :network_gas: 0.1527172886328335 - :ambient_heat: 0.6354620335253754 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0088_schiermonnikoog/GM0088_schiermonnikoog.derived.ad b/datasets/GM0088_schiermonnikoog/GM0088_schiermonnikoog.derived.ad index 3c532839f7..72646561f4 100644 --- a/datasets/GM0088_schiermonnikoog/GM0088_schiermonnikoog.derived.ad +++ b/datasets/GM0088_schiermonnikoog/GM0088_schiermonnikoog.derived.ad @@ -1,6 +1,6 @@ - area = GM0088_schiermonnikoog -- id = 128749 -- parent_id = 128749 +- id = 130206 +- parent_id = 130206 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0088_schiermonnikoog/emissions.csv b/datasets/GM0088_schiermonnikoog/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0088_schiermonnikoog/emissions.csv +++ b/datasets/GM0088_schiermonnikoog/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0088_schiermonnikoog/graph_values.yml b/datasets/GM0088_schiermonnikoog/graph_values.yml index 98eccb9fb0..2e2211a934 100644 --- a/datasets/GM0088_schiermonnikoog/graph_values.yml +++ b/datasets/GM0088_schiermonnikoog/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 592.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14718312625434485 - :network_gas: 0.19049280560110332 - :ambient_heat: 0.6623240681445518 + :electricity: 0.17763508662771801 + :network_gas: 0.2006409317601112 + :ambient_heat: 0.6217239816121709 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 586.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 26.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20550679653264836 - :network_gas: 0.17797281386940433 - :ambient_heat: 0.6165203895979473 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0090_smallingerland/GM0090_smallingerland.derived.ad b/datasets/GM0090_smallingerland/GM0090_smallingerland.derived.ad index 664d54c751..5cd8983c4d 100644 --- a/datasets/GM0090_smallingerland/GM0090_smallingerland.derived.ad +++ b/datasets/GM0090_smallingerland/GM0090_smallingerland.derived.ad @@ -1,6 +1,6 @@ - area = GM0090_smallingerland -- id = 128757 -- parent_id = 128757 +- id = 130214 +- parent_id = 130214 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0090_smallingerland/emissions.csv b/datasets/GM0090_smallingerland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0090_smallingerland/emissions.csv +++ b/datasets/GM0090_smallingerland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0090_smallingerland/graph_values.yml b/datasets/GM0090_smallingerland/graph_values.yml index b0bbfaa9eb..519824fbc7 100644 --- a/datasets/GM0090_smallingerland/graph_values.yml +++ b/datasets/GM0090_smallingerland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7277.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15170388868677714 - :network_gas: 0.1656286122227256 - :ambient_heat: 0.6826674990904972 + :electricity: 0.18339126955061116 + :network_gas: 0.17473807042109304 + :ambient_heat: 0.6418706600282957 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 25777.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 159.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2113922387319227 - :network_gas: 0.15443104507230698 - :ambient_heat: 0.6341767161957703 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0093_terschelling/GM0093_terschelling.derived.ad b/datasets/GM0093_terschelling/GM0093_terschelling.derived.ad index f8f618f1ee..799a3460ec 100644 --- a/datasets/GM0093_terschelling/GM0093_terschelling.derived.ad +++ b/datasets/GM0093_terschelling/GM0093_terschelling.derived.ad @@ -1,6 +1,6 @@ - area = GM0093_terschelling -- id = 128770 -- parent_id = 128770 +- id = 130227 +- parent_id = 130227 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0093_terschelling/emissions.csv b/datasets/GM0093_terschelling/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0093_terschelling/emissions.csv +++ b/datasets/GM0093_terschelling/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0093_terschelling/graph_values.yml b/datasets/GM0093_terschelling/graph_values.yml index d2df5ec354..176d93c851 100644 --- a/datasets/GM0093_terschelling/graph_values.yml +++ b/datasets/GM0093_terschelling/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1498.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14788326233884436 - :network_gas: 0.1866420571363559 - :ambient_heat: 0.6654746805247997 + :electricity: 0.1785253207130068 + :network_gas: 0.19663487247057868 + :ambient_heat: 0.6248398068164145 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 2281.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 171.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20641983685600487 - :network_gas: 0.1743206525759784 - :ambient_heat: 0.6192595105680168 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0096_vlieland/GM0096_vlieland.derived.ad b/datasets/GM0096_vlieland/GM0096_vlieland.derived.ad index b063d39ff6..66fab8a2ec 100644 --- a/datasets/GM0096_vlieland/GM0096_vlieland.derived.ad +++ b/datasets/GM0096_vlieland/GM0096_vlieland.derived.ad @@ -1,6 +1,6 @@ - area = GM0096_vlieland -- id = 128796 -- parent_id = 128796 +- id = 130253 +- parent_id = 130253 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0096_vlieland/emissions.csv b/datasets/GM0096_vlieland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0096_vlieland/emissions.csv +++ b/datasets/GM0096_vlieland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0096_vlieland/graph_values.yml b/datasets/GM0096_vlieland/graph_values.yml index 9fca860d1b..7a69d3044f 100644 --- a/datasets/GM0096_vlieland/graph_values.yml +++ b/datasets/GM0096_vlieland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 602.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15311187431156467 - :network_gas: 0.15788469128639437 - :ambient_heat: 0.6890034344020409 + :electricity: 0.18518788066503306 + :network_gas: 0.16665330848763849 + :ambient_heat: 0.6481588108473285 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 600.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 45.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21322041208146705 - :network_gas: 0.14711835167412954 - :ambient_heat: 0.6396612362444034 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0098_weststellingwerf/GM0098_weststellingwerf.derived.ad b/datasets/GM0098_weststellingwerf/GM0098_weststellingwerf.derived.ad index 4759fcddae..6fc5c5b354 100644 --- a/datasets/GM0098_weststellingwerf/GM0098_weststellingwerf.derived.ad +++ b/datasets/GM0098_weststellingwerf/GM0098_weststellingwerf.derived.ad @@ -1,6 +1,6 @@ - area = GM0098_weststellingwerf -- id = 128813 -- parent_id = 128813 +- id = 130270 +- parent_id = 130270 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0098_weststellingwerf/emissions.csv b/datasets/GM0098_weststellingwerf/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0098_weststellingwerf/emissions.csv +++ b/datasets/GM0098_weststellingwerf/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0098_weststellingwerf/graph_values.yml b/datasets/GM0098_weststellingwerf/graph_values.yml index b0a38b4ded..c301e21c77 100644 --- a/datasets/GM0098_weststellingwerf/graph_values.yml +++ b/datasets/GM0098_weststellingwerf/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2100.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1525745025712722 - :network_gas: 0.16084023585800308 - :ambient_heat: 0.6865852615707249 + :electricity: 0.18450196963708995 + :network_gas: 0.1697399126636542 + :ambient_heat: 0.6457581176992558 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11666.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 41.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21252294211932632 - :network_gas: 0.1499082315226923 - :ambient_heat: 0.6375688263579813 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0106_assen/GM0106_assen.derived.ad b/datasets/GM0106_assen/GM0106_assen.derived.ad index e89c26d2b9..183104ef97 100644 --- a/datasets/GM0106_assen/GM0106_assen.derived.ad +++ b/datasets/GM0106_assen/GM0106_assen.derived.ad @@ -1,6 +1,6 @@ - area = GM0106_assen -- id = 128530 -- parent_id = 128530 +- id = 129987 +- parent_id = 129987 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0106_assen/emissions.csv b/datasets/GM0106_assen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0106_assen/emissions.csv +++ b/datasets/GM0106_assen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0106_assen/graph_values.yml b/datasets/GM0106_assen/graph_values.yml index 16f337f8ed..026110608c 100644 --- a/datasets/GM0106_assen/graph_values.yml +++ b/datasets/GM0106_assen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 10273.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1531143790114858 - :network_gas: 0.15787091543682813 - :ambient_heat: 0.6890147055516862 + :electricity: 0.1851910783354783 + :network_gas: 0.16663891894942173 + :ambient_heat: 0.6481700027151001 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 32515.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 222.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21322366222058808 - :network_gas: 0.1471053511176455 - :ambient_heat: 0.6396709866617665 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0109_coevorden/GM0109_coevorden.derived.ad b/datasets/GM0109_coevorden/GM0109_coevorden.derived.ad index c25d0329a3..74dc250b60 100644 --- a/datasets/GM0109_coevorden/GM0109_coevorden.derived.ad +++ b/datasets/GM0109_coevorden/GM0109_coevorden.derived.ad @@ -1,6 +1,6 @@ - area = GM0109_coevorden -- id = 128566 -- parent_id = 128566 +- id = 130023 +- parent_id = 130023 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0109_coevorden/emissions.csv b/datasets/GM0109_coevorden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0109_coevorden/emissions.csv +++ b/datasets/GM0109_coevorden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0109_coevorden/graph_values.yml b/datasets/GM0109_coevorden/graph_values.yml index 80ca7bb400..cbb2e6056b 100644 --- a/datasets/GM0109_coevorden/graph_values.yml +++ b/datasets/GM0109_coevorden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3598.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15099366759303254 - :network_gas: 0.16953482823832106 - :ambient_heat: 0.6794715041686464 + :electricity: 0.1824857123826504 + :network_gas: 0.1788130836843012 + :ambient_heat: 0.6387012039330484 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15491.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 119.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21046919427501 - :network_gas: 0.15812322289995773 - :ambient_heat: 0.6314075828250323 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0114_emmen/GM0114_emmen.derived.ad b/datasets/GM0114_emmen/GM0114_emmen.derived.ad index 9593238300..a2f62c8997 100644 --- a/datasets/GM0114_emmen/GM0114_emmen.derived.ad +++ b/datasets/GM0114_emmen/GM0114_emmen.derived.ad @@ -1,6 +1,6 @@ - area = GM0114_emmen -- id = 128599 -- parent_id = 128599 +- id = 130056 +- parent_id = 130056 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0114_emmen/emissions.csv b/datasets/GM0114_emmen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0114_emmen/emissions.csv +++ b/datasets/GM0114_emmen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0114_emmen/graph_values.yml b/datasets/GM0114_emmen/graph_values.yml index d11821583c..05aa14e9c3 100644 --- a/datasets/GM0114_emmen/graph_values.yml +++ b/datasets/GM0114_emmen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 9327.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1513182484350507 - :network_gas: 0.16774963360722112 - :ambient_heat: 0.6809321179577282 + :electricity: 0.18289950665334395 + :network_gas: 0.17695100672110609 + :ambient_heat: 0.6401494866255498 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 49357.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 69.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2108911108417349 - :network_gas: 0.15643555663305828 - :ambient_heat: 0.632673332525207 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0118_hoogeveen/GM0118_hoogeveen.derived.ad b/datasets/GM0118_hoogeveen/GM0118_hoogeveen.derived.ad index b53d2e6d0c..d516f68931 100644 --- a/datasets/GM0118_hoogeveen/GM0118_hoogeveen.derived.ad +++ b/datasets/GM0118_hoogeveen/GM0118_hoogeveen.derived.ad @@ -1,6 +1,6 @@ - area = GM0118_hoogeveen -- id = 128645 -- parent_id = 128645 +- id = 130102 +- parent_id = 130102 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0118_hoogeveen/emissions.csv b/datasets/GM0118_hoogeveen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0118_hoogeveen/emissions.csv +++ b/datasets/GM0118_hoogeveen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0118_hoogeveen/graph_values.yml b/datasets/GM0118_hoogeveen/graph_values.yml index 1e3a8a03ca..0b3cf61e83 100644 --- a/datasets/GM0118_hoogeveen/graph_values.yml +++ b/datasets/GM0118_hoogeveen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5856.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15103361743348642 - :network_gas: 0.1693151041158248 - :ambient_heat: 0.6796512784506888 + :electricity: 0.18253663747592228 + :network_gas: 0.17858392042674526 + :ambient_heat: 0.6388794420973325 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 25464.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 168.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2105211309145774 - :network_gas: 0.1579154763416882 - :ambient_heat: 0.6315633927437343 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0119_meppel/GM0119_meppel.derived.ad b/datasets/GM0119_meppel/GM0119_meppel.derived.ad index ab0f7f9a8b..7a85139c8c 100644 --- a/datasets/GM0119_meppel/GM0119_meppel.derived.ad +++ b/datasets/GM0119_meppel/GM0119_meppel.derived.ad @@ -1,6 +1,6 @@ - area = GM0119_meppel -- id = 128684 -- parent_id = 128684 +- id = 130141 +- parent_id = 130141 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0119_meppel/emissions.csv b/datasets/GM0119_meppel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0119_meppel/emissions.csv +++ b/datasets/GM0119_meppel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0119_meppel/graph_values.yml b/datasets/GM0119_meppel/graph_values.yml index 52ab6e1f1d..2e56127103 100644 --- a/datasets/GM0119_meppel/graph_values.yml +++ b/datasets/GM0119_meppel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4155.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15401295638805543 - :network_gas: 0.15292873986569505 - :ambient_heat: 0.6930583037462493 + :electricity: 0.1863386384700686 + :network_gas: 0.16147489073095467 + :ambient_heat: 0.6521864707989766 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16069.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 709.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21438920300827052 - :network_gas: 0.14244318796691546 - :ambient_heat: 0.6431676090248138 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0141_almelo/GM0141_almelo.derived.ad b/datasets/GM0141_almelo/GM0141_almelo.derived.ad index d0f2fd6941..02046d7223 100644 --- a/datasets/GM0141_almelo/GM0141_almelo.derived.ad +++ b/datasets/GM0141_almelo/GM0141_almelo.derived.ad @@ -1,6 +1,6 @@ - area = GM0141_almelo -- id = 128520 -- parent_id = 128520 +- id = 129977 +- parent_id = 129977 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0141_almelo/emissions.csv b/datasets/GM0141_almelo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0141_almelo/emissions.csv +++ b/datasets/GM0141_almelo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0141_almelo/graph_values.yml b/datasets/GM0141_almelo/graph_values.yml index e89583bf90..15d294f86a 100644 --- a/datasets/GM0141_almelo/graph_values.yml +++ b/datasets/GM0141_almelo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8339.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15251660297449546 - :network_gas: 0.16115868364027505 - :ambient_heat: 0.6863247133852295 + :electricity: 0.18442808149655224 + :network_gas: 0.1700724097862412 + :ambient_heat: 0.6454995087172065 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 33783.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1759.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21244777266850037 - :network_gas: 0.1502089093259961 - :ambient_heat: 0.6373433180055034 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0147_borne/GM0147_borne.derived.ad b/datasets/GM0147_borne/GM0147_borne.derived.ad index 46647399d6..077e6dd857 100644 --- a/datasets/GM0147_borne/GM0147_borne.derived.ad +++ b/datasets/GM0147_borne/GM0147_borne.derived.ad @@ -1,6 +1,6 @@ - area = GM0147_borne -- id = 128554 -- parent_id = 128554 +- id = 130011 +- parent_id = 130011 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0147_borne/emissions.csv b/datasets/GM0147_borne/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0147_borne/emissions.csv +++ b/datasets/GM0147_borne/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0147_borne/graph_values.yml b/datasets/GM0147_borne/graph_values.yml index 43ca6b1f27..bf9bdd4199 100644 --- a/datasets/GM0147_borne/graph_values.yml +++ b/datasets/GM0147_borne/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1645.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15638825488632585 - :network_gas: 0.13986459812520774 - :ambient_heat: 0.7037471469884664 + :electricity: 0.18937570433946507 + :network_gas: 0.1478080741710493 + :ambient_heat: 0.6628162214894855 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10095.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 172.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21746570652489663 - :network_gas: 0.13013717390041113 - :ambient_heat: 0.6523971195746923 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0148_dalfsen/GM0148_dalfsen.derived.ad b/datasets/GM0148_dalfsen/GM0148_dalfsen.derived.ad index ebb54f6ec6..13d12c34e9 100644 --- a/datasets/GM0148_dalfsen/GM0148_dalfsen.derived.ad +++ b/datasets/GM0148_dalfsen/GM0148_dalfsen.derived.ad @@ -1,6 +1,6 @@ - area = GM0148_dalfsen -- id = 128569 -- parent_id = 128569 +- id = 130026 +- parent_id = 130026 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0148_dalfsen/emissions.csv b/datasets/GM0148_dalfsen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0148_dalfsen/emissions.csv +++ b/datasets/GM0148_dalfsen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0148_dalfsen/graph_values.yml b/datasets/GM0148_dalfsen/graph_values.yml index c75c019777..558e9a3a53 100644 --- a/datasets/GM0148_dalfsen/graph_values.yml +++ b/datasets/GM0148_dalfsen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2268.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15480743489549723 - :network_gas: 0.14855910807476538 - :ambient_heat: 0.6966334570297374 + :electricity: 0.1873538789291749 + :network_gas: 0.1569063019299628 + :ambient_heat: 0.6557398191408624 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12044.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 19.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21541894115190796 - :network_gas: 0.1383242353923659 - :ambient_heat: 0.6462568234557262 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0150_deventer/GM0150_deventer.derived.ad b/datasets/GM0150_deventer/GM0150_deventer.derived.ad index a89da6abc9..794d8a8d5c 100644 --- a/datasets/GM0150_deventer/GM0150_deventer.derived.ad +++ b/datasets/GM0150_deventer/GM0150_deventer.derived.ad @@ -1,6 +1,6 @@ - area = GM0150_deventer -- id = 128579 -- parent_id = 128579 +- id = 130036 +- parent_id = 130036 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0150_deventer/emissions.csv b/datasets/GM0150_deventer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0150_deventer/emissions.csv +++ b/datasets/GM0150_deventer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0150_deventer/graph_values.yml b/datasets/GM0150_deventer/graph_values.yml index 772a34dcd5..4f5c2e36cd 100644 --- a/datasets/GM0150_deventer/graph_values.yml +++ b/datasets/GM0150_deventer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 11379.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15454185246175522 - :network_gas: 0.15001981146034626 - :ambient_heat: 0.6954383360778986 + :electricity: 0.18701443389233388 + :network_gas: 0.1584338068475951 + :ambient_heat: 0.654551759260071 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 46167.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4299.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2150747959277229 - :network_gas: 0.13970081628910622 - :ambient_heat: 0.6452243877831709 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0153_enschede/GM0153_enschede.derived.ad b/datasets/GM0153_enschede/GM0153_enschede.derived.ad index 7e6f3657a2..ae2210b8b0 100644 --- a/datasets/GM0153_enschede/GM0153_enschede.derived.ad +++ b/datasets/GM0153_enschede/GM0153_enschede.derived.ad @@ -1,6 +1,6 @@ - area = GM0153_enschede -- id = 128601 -- parent_id = 128601 +- id = 130058 +- parent_id = 130058 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0153_enschede/emissions.csv b/datasets/GM0153_enschede/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0153_enschede/emissions.csv +++ b/datasets/GM0153_enschede/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0153_enschede/graph_values.yml b/datasets/GM0153_enschede/graph_values.yml index 5b7b95a913..d271877547 100644 --- a/datasets/GM0153_enschede/graph_values.yml +++ b/datasets/GM0153_enschede/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 18865.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15639026211737103 - :network_gas: 0.13985355835445937 - :ambient_heat: 0.7037561795281697 + :electricity: 0.18937827300859467 + :network_gas: 0.14779651514292574 + :ambient_heat: 0.6628252118484795 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 75890.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3122.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21746830355625674 - :network_gas: 0.13012678577497075 - :ambient_heat: 0.6524049106687725 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0158_haaksbergen/GM0158_haaksbergen.derived.ad b/datasets/GM0158_haaksbergen/GM0158_haaksbergen.derived.ad index dbcb344733..7b8445128e 100644 --- a/datasets/GM0158_haaksbergen/GM0158_haaksbergen.derived.ad +++ b/datasets/GM0158_haaksbergen/GM0158_haaksbergen.derived.ad @@ -1,6 +1,6 @@ - area = GM0158_haaksbergen -- id = 128618 -- parent_id = 128618 +- id = 130075 +- parent_id = 130075 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0158_haaksbergen/emissions.csv b/datasets/GM0158_haaksbergen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0158_haaksbergen/emissions.csv +++ b/datasets/GM0158_haaksbergen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0158_haaksbergen/graph_values.yml b/datasets/GM0158_haaksbergen/graph_values.yml index 27949eabf3..c954766bcc 100644 --- a/datasets/GM0158_haaksbergen/graph_values.yml +++ b/datasets/GM0158_haaksbergen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1921.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15522090155281631 - :network_gas: 0.14628504145951035 - :ambient_heat: 0.6984940569876734 + :electricity: 0.18788246735550237 + :network_gas: 0.15452765050488101 + :ambient_heat: 0.6575898821396166 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10563.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 30.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21595455482468995 - :network_gas: 0.13618178070123785 - :ambient_heat: 0.6478636644740722 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0160_hardenberg/GM0160_hardenberg.derived.ad b/datasets/GM0160_hardenberg/GM0160_hardenberg.derived.ad index 95573cbfa0..1425eea036 100644 --- a/datasets/GM0160_hardenberg/GM0160_hardenberg.derived.ad +++ b/datasets/GM0160_hardenberg/GM0160_hardenberg.derived.ad @@ -1,6 +1,6 @@ - area = GM0160_hardenberg -- id = 128622 -- parent_id = 128622 +- id = 130079 +- parent_id = 130079 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0160_hardenberg/emissions.csv b/datasets/GM0160_hardenberg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0160_hardenberg/emissions.csv +++ b/datasets/GM0160_hardenberg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0160_hardenberg/graph_values.yml b/datasets/GM0160_hardenberg/graph_values.yml index 0e5545bd58..52515bd429 100644 --- a/datasets/GM0160_hardenberg/graph_values.yml +++ b/datasets/GM0160_hardenberg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6106.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15390486099074516 - :network_gas: 0.15352326455090168 - :ambient_heat: 0.6925718744583533 + :electricity: 0.18620055181226702 + :network_gas: 0.16209628160711625 + :ambient_heat: 0.6517031665806167 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 25102.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 90.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2142490422851791 - :network_gas: 0.1430038308592813 - :ambient_heat: 0.6427471268555396 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0163_hellendoorn/GM0163_hellendoorn.derived.ad b/datasets/GM0163_hellendoorn/GM0163_hellendoorn.derived.ad index 0f0bdffa0d..1e6aace53b 100644 --- a/datasets/GM0163_hellendoorn/GM0163_hellendoorn.derived.ad +++ b/datasets/GM0163_hellendoorn/GM0163_hellendoorn.derived.ad @@ -1,6 +1,6 @@ - area = GM0163_hellendoorn -- id = 128634 -- parent_id = 128634 +- id = 130091 +- parent_id = 130091 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0163_hellendoorn/emissions.csv b/datasets/GM0163_hellendoorn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0163_hellendoorn/emissions.csv +++ b/datasets/GM0163_hellendoorn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0163_hellendoorn/graph_values.yml b/datasets/GM0163_hellendoorn/graph_values.yml index a8b82f4ea0..8f1f7d89c3 100644 --- a/datasets/GM0163_hellendoorn/graph_values.yml +++ b/datasets/GM0163_hellendoorn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3741.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15501556506619457 - :network_gas: 0.14741439213592988 - :ambient_heat: 0.6975700427978756 + :electricity: 0.1876199390762146 + :network_gas: 0.15570902950326496 + :ambient_heat: 0.6566710314205204 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14923.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 116.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21568858212337885 - :network_gas: 0.13724567150648226 - :ambient_heat: 0.6470657463701388 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0164_hengelo/GM0164_hengelo.derived.ad b/datasets/GM0164_hengelo/GM0164_hengelo.derived.ad index f6f67717fd..fbe6da4cde 100644 --- a/datasets/GM0164_hengelo/GM0164_hengelo.derived.ad +++ b/datasets/GM0164_hengelo/GM0164_hengelo.derived.ad @@ -1,6 +1,6 @@ - area = GM0164_hengelo -- id = 128637 -- parent_id = 128637 +- id = 130094 +- parent_id = 130094 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0164_hengelo/emissions.csv b/datasets/GM0164_hengelo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0164_hengelo/emissions.csv +++ b/datasets/GM0164_hengelo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0164_hengelo/graph_values.yml b/datasets/GM0164_hengelo/graph_values.yml index b2766626c7..eaf187db0e 100644 --- a/datasets/GM0164_hengelo/graph_values.yml +++ b/datasets/GM0164_hengelo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 11134.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15373294256402936 - :network_gas: 0.1544688158978385 - :ambient_heat: 0.6917982415381321 + :electricity: 0.18598095662327113 + :network_gas: 0.16308446141437244 + :ambient_heat: 0.6509345819623564 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 38880.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1568.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2140260983320579 - :network_gas: 0.143895606671766 - :ambient_heat: 0.642078294996176 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0166_kampen/GM0166_kampen.derived.ad b/datasets/GM0166_kampen/GM0166_kampen.derived.ad index 135d87b47f..9b59c6f5d5 100644 --- a/datasets/GM0166_kampen/GM0166_kampen.derived.ad +++ b/datasets/GM0166_kampen/GM0166_kampen.derived.ad @@ -1,6 +1,6 @@ - area = GM0166_kampen -- id = 128653 -- parent_id = 128653 +- id = 130110 +- parent_id = 130110 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0166_kampen/emissions.csv b/datasets/GM0166_kampen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0166_kampen/emissions.csv +++ b/datasets/GM0166_kampen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0166_kampen/graph_values.yml b/datasets/GM0166_kampen/graph_values.yml index 1e7fe06542..01fd46878c 100644 --- a/datasets/GM0166_kampen/graph_values.yml +++ b/datasets/GM0166_kampen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4327.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1534591627052825 - :network_gas: 0.15597460512094638 - :ambient_heat: 0.6905662321737712 + :electricity: 0.18563130812910664 + :network_gas: 0.16465788195764935 + :ambient_heat: 0.6497108099132439 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22766.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2705.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21367098992842298 - :network_gas: 0.14531604028630582 - :ambient_heat: 0.6410129697852712 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0168_losser/GM0168_losser.derived.ad b/datasets/GM0168_losser/GM0168_losser.derived.ad index 37727218ba..315ddff940 100644 --- a/datasets/GM0168_losser/GM0168_losser.derived.ad +++ b/datasets/GM0168_losser/GM0168_losser.derived.ad @@ -1,6 +1,6 @@ - area = GM0168_losser -- id = 128677 -- parent_id = 128677 +- id = 130134 +- parent_id = 130134 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0168_losser/emissions.csv b/datasets/GM0168_losser/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0168_losser/emissions.csv +++ b/datasets/GM0168_losser/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0168_losser/graph_values.yml b/datasets/GM0168_losser/graph_values.yml index 0e3ca7a551..c3cce334e4 100644 --- a/datasets/GM0168_losser/graph_values.yml +++ b/datasets/GM0168_losser/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1537.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15369408300641318 - :network_gas: 0.15468254346472754 - :ambient_heat: 0.6916233735288593 + :electricity: 0.185931324251088 + :network_gas: 0.16330780741845344 + :ambient_heat: 0.6507608683304587 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9852.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 60.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2139757004973277 - :network_gas: 0.14409719801068696 - :ambient_heat: 0.6419271014919854 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0171_noordoostpolder/GM0171_noordoostpolder.derived.ad b/datasets/GM0171_noordoostpolder/GM0171_noordoostpolder.derived.ad index c34c8b1f19..ba0becb961 100644 --- a/datasets/GM0171_noordoostpolder/GM0171_noordoostpolder.derived.ad +++ b/datasets/GM0171_noordoostpolder/GM0171_noordoostpolder.derived.ad @@ -1,6 +1,6 @@ - area = GM0171_noordoostpolder -- id = 128701 -- parent_id = 128701 +- id = 130158 +- parent_id = 130158 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0171_noordoostpolder/emissions.csv b/datasets/GM0171_noordoostpolder/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0171_noordoostpolder/emissions.csv +++ b/datasets/GM0171_noordoostpolder/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0171_noordoostpolder/graph_values.yml b/datasets/GM0171_noordoostpolder/graph_values.yml index 00f61ba6e6..db409d6e00 100644 --- a/datasets/GM0171_noordoostpolder/graph_values.yml +++ b/datasets/GM0171_noordoostpolder/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4064.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15595144477259038 - :network_gas: 0.14226705375075283 - :ambient_heat: 0.7017815014766567 + :electricity: 0.18881680411758034 + :network_gas: 0.15032312887722424 + :ambient_heat: 0.6608600670051953 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19904.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 90.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21690043478393967 - :network_gas: 0.13239826086423903 - :ambient_heat: 0.6507013043518213 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0173_oldenzaal/GM0173_oldenzaal.derived.ad b/datasets/GM0173_oldenzaal/GM0173_oldenzaal.derived.ad index 6c50af95a3..7a83f6d908 100644 --- a/datasets/GM0173_oldenzaal/GM0173_oldenzaal.derived.ad +++ b/datasets/GM0173_oldenzaal/GM0173_oldenzaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0173_oldenzaal -- id = 128710 -- parent_id = 128710 +- id = 130167 +- parent_id = 130167 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0173_oldenzaal/emissions.csv b/datasets/GM0173_oldenzaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0173_oldenzaal/emissions.csv +++ b/datasets/GM0173_oldenzaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0173_oldenzaal/graph_values.yml b/datasets/GM0173_oldenzaal/graph_values.yml index a4ba0ee3ae..75c9f257ea 100644 --- a/datasets/GM0173_oldenzaal/graph_values.yml +++ b/datasets/GM0173_oldenzaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3730.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15400544204843397 - :network_gas: 0.1529700687336133 - :ambient_heat: 0.6930244892179528 + :electricity: 0.18632903891320904 + :network_gas: 0.1615180888005052 + :ambient_heat: 0.6521528722862856 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14655.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 254.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2143794600576874 - :network_gas: 0.14248215976924802 - :ambient_heat: 0.6431383801730645 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0175_ommen/GM0175_ommen.derived.ad b/datasets/GM0175_ommen/GM0175_ommen.derived.ad index ab7ebbd5d0..2e6b46ff89 100644 --- a/datasets/GM0175_ommen/GM0175_ommen.derived.ad +++ b/datasets/GM0175_ommen/GM0175_ommen.derived.ad @@ -1,6 +1,6 @@ - area = GM0175_ommen -- id = 128712 -- parent_id = 128712 +- id = 130169 +- parent_id = 130169 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0175_ommen/emissions.csv b/datasets/GM0175_ommen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0175_ommen/emissions.csv +++ b/datasets/GM0175_ommen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0175_ommen/graph_values.yml b/datasets/GM0175_ommen/graph_values.yml index 07686601f1..074e46c6ba 100644 --- a/datasets/GM0175_ommen/graph_values.yml +++ b/datasets/GM0175_ommen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2558.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1541526898188033 - :network_gas: 0.15216020599658198 - :ambient_heat: 0.6936871041846149 + :electricity: 0.18651715724253637 + :network_gas: 0.1606715550705724 + :ambient_heat: 0.6528112876868912 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7575.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 28.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2145703668549414 - :network_gas: 0.141718532580232 - :ambient_heat: 0.6437111005648265 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0177_raalte/GM0177_raalte.derived.ad b/datasets/GM0177_raalte/GM0177_raalte.derived.ad index 8287e762af..94160f57eb 100644 --- a/datasets/GM0177_raalte/GM0177_raalte.derived.ad +++ b/datasets/GM0177_raalte/GM0177_raalte.derived.ad @@ -1,6 +1,6 @@ - area = GM0177_raalte -- id = 128730 -- parent_id = 128730 +- id = 130187 +- parent_id = 130187 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0177_raalte/emissions.csv b/datasets/GM0177_raalte/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0177_raalte/emissions.csv +++ b/datasets/GM0177_raalte/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0177_raalte/graph_values.yml b/datasets/GM0177_raalte/graph_values.yml index 7a2b1854ae..1a81b8ae41 100644 --- a/datasets/GM0177_raalte/graph_values.yml +++ b/datasets/GM0177_raalte/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3286.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1548782675729321 - :network_gas: 0.14816952834887345 - :ambient_heat: 0.6969522040781945 + :electricity: 0.18744442232976277 + :network_gas: 0.15649885602666055 + :ambient_heat: 0.6560567216435768 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16027.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 43.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21551071332920324 - :network_gas: 0.13795714668318473 - :ambient_heat: 0.646532139987612 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0180_staphorst/GM0180_staphorst.derived.ad b/datasets/GM0180_staphorst/GM0180_staphorst.derived.ad index c407824962..6cba28e143 100644 --- a/datasets/GM0180_staphorst/GM0180_staphorst.derived.ad +++ b/datasets/GM0180_staphorst/GM0180_staphorst.derived.ad @@ -1,6 +1,6 @@ - area = GM0180_staphorst -- id = 128762 -- parent_id = 128762 +- id = 130219 +- parent_id = 130219 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0180_staphorst/emissions.csv b/datasets/GM0180_staphorst/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0180_staphorst/emissions.csv +++ b/datasets/GM0180_staphorst/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0180_staphorst/graph_values.yml b/datasets/GM0180_staphorst/graph_values.yml index 0f39653fba..96cc361888 100644 --- a/datasets/GM0180_staphorst/graph_values.yml +++ b/datasets/GM0180_staphorst/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1335.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1530377740416969 - :network_gas: 0.15829224277066692 - :ambient_heat: 0.6886699831876362 + :electricity: 0.18509328184420137 + :network_gas: 0.16707900380894083 + :ambient_heat: 0.6478277143468577 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5945.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 25.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21312425509239127 - :network_gas: 0.14750297963043268 - :ambient_heat: 0.6393727652771761 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0183_tubbergen/GM0183_tubbergen.derived.ad b/datasets/GM0183_tubbergen/GM0183_tubbergen.derived.ad index e22dde9fb3..66c8eb2900 100644 --- a/datasets/GM0183_tubbergen/GM0183_tubbergen.derived.ad +++ b/datasets/GM0183_tubbergen/GM0183_tubbergen.derived.ad @@ -1,6 +1,6 @@ - area = GM0183_tubbergen -- id = 128776 -- parent_id = 128776 +- id = 130233 +- parent_id = 130233 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0183_tubbergen/emissions.csv b/datasets/GM0183_tubbergen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0183_tubbergen/emissions.csv +++ b/datasets/GM0183_tubbergen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0183_tubbergen/graph_values.yml b/datasets/GM0183_tubbergen/graph_values.yml index 22ae7ca57a..f2c3150630 100644 --- a/datasets/GM0183_tubbergen/graph_values.yml +++ b/datasets/GM0183_tubbergen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1288.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1547819021617863 - :network_gas: 0.14869953811017556 - :ambient_heat: 0.6965185597280383 + :electricity: 0.18732124230208919 + :network_gas: 0.15705316696835694 + :ambient_heat: 0.6556255907295538 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8606.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 15.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21538585903302582 - :network_gas: 0.13845656386789437 - :ambient_heat: 0.6461575770990797 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0184_urk/GM0184_urk.derived.ad b/datasets/GM0184_urk/GM0184_urk.derived.ad index 7915def4ef..2bfcc99cb9 100644 --- a/datasets/GM0184_urk/GM0184_urk.derived.ad +++ b/datasets/GM0184_urk/GM0184_urk.derived.ad @@ -1,6 +1,6 @@ - area = GM0184_urk -- id = 128782 -- parent_id = 128782 +- id = 130239 +- parent_id = 130239 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0184_urk/emissions.csv b/datasets/GM0184_urk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0184_urk/emissions.csv +++ b/datasets/GM0184_urk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0184_urk/graph_values.yml b/datasets/GM0184_urk/graph_values.yml index cfcb061234..9f2f1925af 100644 --- a/datasets/GM0184_urk/graph_values.yml +++ b/datasets/GM0184_urk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1413.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15759412227801017 - :network_gas: 0.133232327470944 - :ambient_heat: 0.7091735502510458 + :electricity: 0.19091953714483634 + :network_gas: 0.140860816305231 + :ambient_heat: 0.6682196465499327 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6753.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 258.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.219025068464226 - :network_gas: 0.12389972614309368 - :ambient_heat: 0.6570752053926803 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0189_wierden/GM0189_wierden.derived.ad b/datasets/GM0189_wierden/GM0189_wierden.derived.ad index fa08524e75..1766b72222 100644 --- a/datasets/GM0189_wierden/GM0189_wierden.derived.ad +++ b/datasets/GM0189_wierden/GM0189_wierden.derived.ad @@ -1,6 +1,6 @@ - area = GM0189_wierden -- id = 128814 -- parent_id = 128814 +- id = 130271 +- parent_id = 130271 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0189_wierden/emissions.csv b/datasets/GM0189_wierden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0189_wierden/emissions.csv +++ b/datasets/GM0189_wierden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0189_wierden/graph_values.yml b/datasets/GM0189_wierden/graph_values.yml index 5c2a3066e8..0df7b9d0bd 100644 --- a/datasets/GM0189_wierden/graph_values.yml +++ b/datasets/GM0189_wierden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2045.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15624611517308687 - :network_gas: 0.14064636654802212 - :ambient_heat: 0.703107518278891 + :electricity: 0.18919381656804718 + :network_gas: 0.1486265703490569 + :ambient_heat: 0.6621796130828959 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9929.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 30.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2172817890038148 - :network_gas: 0.13087284398473847 - :ambient_heat: 0.6518453670114467 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0193_zwolle/GM0193_zwolle.derived.ad b/datasets/GM0193_zwolle/GM0193_zwolle.derived.ad index 80476b2d3f..b8cce933be 100644 --- a/datasets/GM0193_zwolle/GM0193_zwolle.derived.ad +++ b/datasets/GM0193_zwolle/GM0193_zwolle.derived.ad @@ -1,6 +1,6 @@ - area = GM0193_zwolle -- id = 128836 -- parent_id = 128836 +- id = 130293 +- parent_id = 130293 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0193_zwolle/emissions.csv b/datasets/GM0193_zwolle/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0193_zwolle/emissions.csv +++ b/datasets/GM0193_zwolle/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0193_zwolle/graph_values.yml b/datasets/GM0193_zwolle/graph_values.yml index 83f8ee1f01..8c001190e7 100644 --- a/datasets/GM0193_zwolle/graph_values.yml +++ b/datasets/GM0193_zwolle/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 22273.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15511241250600608 - :network_gas: 0.14688173121696674 - :ambient_heat: 0.6980058562770274 + :electricity: 0.18774375628417272 + :network_gas: 0.15515185124606132 + :ambient_heat: 0.6571043924697659 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 59462.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4931.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2158140348332163 - :network_gas: 0.1367438606671325 - :ambient_heat: 0.6474421044996512 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0197_aalten/GM0197_aalten.derived.ad b/datasets/GM0197_aalten/GM0197_aalten.derived.ad index ee594757ce..fc80b58ced 100644 --- a/datasets/GM0197_aalten/GM0197_aalten.derived.ad +++ b/datasets/GM0197_aalten/GM0197_aalten.derived.ad @@ -1,6 +1,6 @@ - area = GM0197_aalten -- id = 128515 -- parent_id = 128515 +- id = 129972 +- parent_id = 129972 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0197_aalten/emissions.csv b/datasets/GM0197_aalten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0197_aalten/emissions.csv +++ b/datasets/GM0197_aalten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0197_aalten/graph_values.yml b/datasets/GM0197_aalten/graph_values.yml index e424daa696..649ddeebae 100644 --- a/datasets/GM0197_aalten/graph_values.yml +++ b/datasets/GM0197_aalten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1913.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15448905980557054 - :network_gas: 0.15031017106936193 - :ambient_heat: 0.6952007691250675 + :electricity: 0.1869469665740242 + :network_gas: 0.1587374102275608 + :ambient_heat: 0.6543156231984151 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12023.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 102.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21500637681269735 - :network_gas: 0.13997449274920828 - :ambient_heat: 0.6450191304380944 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0200_apeldoorn/GM0200_apeldoorn.derived.ad b/datasets/GM0200_apeldoorn/GM0200_apeldoorn.derived.ad index e64f528841..d4fb2b8c43 100644 --- a/datasets/GM0200_apeldoorn/GM0200_apeldoorn.derived.ad +++ b/datasets/GM0200_apeldoorn/GM0200_apeldoorn.derived.ad @@ -1,6 +1,6 @@ - area = GM0200_apeldoorn -- id = 128528 -- parent_id = 128528 +- id = 129985 +- parent_id = 129985 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0200_apeldoorn/emissions.csv b/datasets/GM0200_apeldoorn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0200_apeldoorn/emissions.csv +++ b/datasets/GM0200_apeldoorn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0200_apeldoorn/graph_values.yml b/datasets/GM0200_apeldoorn/graph_values.yml index e8c72991a7..ffb4ac3bff 100644 --- a/datasets/GM0200_apeldoorn/graph_values.yml +++ b/datasets/GM0200_apeldoorn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 27746.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15315063143038715 - :network_gas: 0.15767152713287066 - :ambient_heat: 0.6891778414367422 + :electricity: 0.18523736129225993 + :network_gas: 0.16643064533686722 + :ambient_heat: 0.6483319933708728 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 73999.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 532.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21327070313360816 - :network_gas: 0.14691718746556498 - :ambient_heat: 0.6398121094008268 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0202_arnhem/GM0202_arnhem.derived.ad b/datasets/GM0202_arnhem/GM0202_arnhem.derived.ad index 906fee923c..5ed5006581 100644 --- a/datasets/GM0202_arnhem/GM0202_arnhem.derived.ad +++ b/datasets/GM0202_arnhem/GM0202_arnhem.derived.ad @@ -1,6 +1,6 @@ - area = GM0202_arnhem -- id = 128529 -- parent_id = 128529 +- id = 129986 +- parent_id = 129986 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0202_arnhem/emissions.csv b/datasets/GM0202_arnhem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0202_arnhem/emissions.csv +++ b/datasets/GM0202_arnhem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0202_arnhem/graph_values.yml b/datasets/GM0202_arnhem/graph_values.yml index 78d070927f..0047aeb171 100644 --- a/datasets/GM0202_arnhem/graph_values.yml +++ b/datasets/GM0202_arnhem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 25410.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15481842838941792 - :network_gas: 0.14849864385820133 - :ambient_heat: 0.6966829277523806 + :electricity: 0.1873679312951348 + :network_gas: 0.15684306618992094 + :ambient_heat: 0.6557890025149442 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 77777.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5344.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2154331849130769 - :network_gas: 0.13826726034769002 - :ambient_heat: 0.646299554739233 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0203_barneveld/GM0203_barneveld.derived.ad b/datasets/GM0203_barneveld/GM0203_barneveld.derived.ad index 7189a9f6cb..30b90be522 100644 --- a/datasets/GM0203_barneveld/GM0203_barneveld.derived.ad +++ b/datasets/GM0203_barneveld/GM0203_barneveld.derived.ad @@ -1,6 +1,6 @@ - area = GM0203_barneveld -- id = 128535 -- parent_id = 128535 +- id = 129992 +- parent_id = 129992 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0203_barneveld/emissions.csv b/datasets/GM0203_barneveld/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0203_barneveld/emissions.csv +++ b/datasets/GM0203_barneveld/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0203_barneveld/graph_values.yml b/datasets/GM0203_barneveld/graph_values.yml index faf620de99..00b918e2af 100644 --- a/datasets/GM0203_barneveld/graph_values.yml +++ b/datasets/GM0203_barneveld/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7661.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15590873201385183 - :network_gas: 0.14250197392381492 - :ambient_heat: 0.7015892940623333 + :electricity: 0.18876216249386454 + :network_gas: 0.15056901654643293 + :ambient_heat: 0.6606688209597025 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23121.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 63.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21684514882630962 - :network_gas: 0.13261940469475914 - :ambient_heat: 0.6505354464789311 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0209_beuningen/GM0209_beuningen.derived.ad b/datasets/GM0209_beuningen/GM0209_beuningen.derived.ad index 29f3f7ca24..f5c685b12a 100644 --- a/datasets/GM0209_beuningen/GM0209_beuningen.derived.ad +++ b/datasets/GM0209_beuningen/GM0209_beuningen.derived.ad @@ -1,6 +1,6 @@ - area = GM0209_beuningen -- id = 128546 -- parent_id = 128546 +- id = 130003 +- parent_id = 130003 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0209_beuningen/emissions.csv b/datasets/GM0209_beuningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0209_beuningen/emissions.csv +++ b/datasets/GM0209_beuningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0209_beuningen/graph_values.yml b/datasets/GM0209_beuningen/graph_values.yml index eeeaf793c9..6551596fd5 100644 --- a/datasets/GM0209_beuningen/graph_values.yml +++ b/datasets/GM0209_beuningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2384.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15504299944558594 - :network_gas: 0.1472635030492772 - :ambient_heat: 0.6976934975051369 + :electricity: 0.1876550124109222 + :network_gas: 0.15555119926440755 + :ambient_heat: 0.6567937883246703 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11232.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.215724120734943 - :network_gas: 0.13710351706022572 - :ambient_heat: 0.6471723622048312 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0213_brummen/GM0213_brummen.derived.ad b/datasets/GM0213_brummen/GM0213_brummen.derived.ad index c0bd71e557..a5690f5a7d 100644 --- a/datasets/GM0213_brummen/GM0213_brummen.derived.ad +++ b/datasets/GM0213_brummen/GM0213_brummen.derived.ad @@ -1,6 +1,6 @@ - area = GM0213_brummen -- id = 128559 -- parent_id = 128559 +- id = 130016 +- parent_id = 130016 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0213_brummen/emissions.csv b/datasets/GM0213_brummen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0213_brummen/emissions.csv +++ b/datasets/GM0213_brummen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0213_brummen/graph_values.yml b/datasets/GM0213_brummen/graph_values.yml index 068657b139..9ac39d911f 100644 --- a/datasets/GM0213_brummen/graph_values.yml +++ b/datasets/GM0213_brummen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1574.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1499776586617623 - :network_gas: 0.1751228773603074 - :ambient_heat: 0.6748994639779303 + :electricity: 0.18119107506830834 + :network_gas: 0.1846389601873478 + :ambient_heat: 0.634169964744344 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9407.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 34.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20914771363635168 - :network_gas: 0.1634091454545911 - :ambient_heat: 0.6274431409090573 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0214_buren/GM0214_buren.derived.ad b/datasets/GM0214_buren/GM0214_buren.derived.ad index 4120e8cf52..9be27ebfbd 100644 --- a/datasets/GM0214_buren/GM0214_buren.derived.ad +++ b/datasets/GM0214_buren/GM0214_buren.derived.ad @@ -1,6 +1,6 @@ - area = GM0214_buren -- id = 128563 -- parent_id = 128563 +- id = 130020 +- parent_id = 130020 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0214_buren/emissions.csv b/datasets/GM0214_buren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0214_buren/emissions.csv +++ b/datasets/GM0214_buren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0214_buren/graph_values.yml b/datasets/GM0214_buren/graph_values.yml index 08b2d7a74e..9e6cc37e62 100644 --- a/datasets/GM0214_buren/graph_values.yml +++ b/datasets/GM0214_buren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1695.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15633516869703032 - :network_gas: 0.14015657216633312 - :ambient_heat: 0.7035082591366364 + :electricity: 0.18930777089066847 + :network_gas: 0.14811377514129845 + :ambient_heat: 0.662578453968033 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10903.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 99.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21739701992467608 - :network_gas: 0.1304119203012933 - :ambient_heat: 0.6521910597740306 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0216_culemborg/GM0216_culemborg.derived.ad b/datasets/GM0216_culemborg/GM0216_culemborg.derived.ad index 184894c9db..4c552f04bb 100644 --- a/datasets/GM0216_culemborg/GM0216_culemborg.derived.ad +++ b/datasets/GM0216_culemborg/GM0216_culemborg.derived.ad @@ -1,6 +1,6 @@ - area = GM0216_culemborg -- id = 128568 -- parent_id = 128568 +- id = 130025 +- parent_id = 130025 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0216_culemborg/emissions.csv b/datasets/GM0216_culemborg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0216_culemborg/emissions.csv +++ b/datasets/GM0216_culemborg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0216_culemborg/graph_values.yml b/datasets/GM0216_culemborg/graph_values.yml index 0c5bc57111..c7cc3e43bb 100644 --- a/datasets/GM0216_culemborg/graph_values.yml +++ b/datasets/GM0216_culemborg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3085.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15805370936614216 - :network_gas: 0.13070459848621804 - :ambient_heat: 0.7112416921476397 + :electricity: 0.1915082876398702 + :network_gas: 0.13821143517186074 + :ambient_heat: 0.6702802771882691 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12720.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 713.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2196189415615075 - :network_gas: 0.12152423375396754 - :ambient_heat: 0.6588568246845249 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0221_doesburg/GM0221_doesburg.derived.ad b/datasets/GM0221_doesburg/GM0221_doesburg.derived.ad index 9d32fa8f67..3ff196db5d 100644 --- a/datasets/GM0221_doesburg/GM0221_doesburg.derived.ad +++ b/datasets/GM0221_doesburg/GM0221_doesburg.derived.ad @@ -1,6 +1,6 @@ - area = GM0221_doesburg -- id = 128582 -- parent_id = 128582 +- id = 130039 +- parent_id = 130039 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0221_doesburg/emissions.csv b/datasets/GM0221_doesburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0221_doesburg/emissions.csv +++ b/datasets/GM0221_doesburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0221_doesburg/graph_values.yml b/datasets/GM0221_doesburg/graph_values.yml index 6c4eb92eda..39820fc2de 100644 --- a/datasets/GM0221_doesburg/graph_values.yml +++ b/datasets/GM0221_doesburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 845.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15452489726223206 - :network_gas: 0.15011306505772368 - :ambient_heat: 0.6953620376800443 + :electricity: 0.18699276541031962 + :network_gas: 0.15853131516040597 + :ambient_heat: 0.6544759194292744 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5307.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 362.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21505282239340234 - :network_gas: 0.13978871042638835 - :ambient_heat: 0.6451584671802093 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0222_doetinchem/GM0222_doetinchem.derived.ad b/datasets/GM0222_doetinchem/GM0222_doetinchem.derived.ad index e2eed5bc94..ae848f3af4 100644 --- a/datasets/GM0222_doetinchem/GM0222_doetinchem.derived.ad +++ b/datasets/GM0222_doetinchem/GM0222_doetinchem.derived.ad @@ -1,6 +1,6 @@ - area = GM0222_doetinchem -- id = 128583 -- parent_id = 128583 +- id = 130040 +- parent_id = 130040 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0222_doetinchem/emissions.csv b/datasets/GM0222_doetinchem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0222_doetinchem/emissions.csv +++ b/datasets/GM0222_doetinchem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0222_doetinchem/graph_values.yml b/datasets/GM0222_doetinchem/graph_values.yml index 1235b3cef7..05c9f7ee84 100644 --- a/datasets/GM0222_doetinchem/graph_values.yml +++ b/datasets/GM0222_doetinchem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8530.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15545691098416334 - :network_gas: 0.14498698958710154 - :ambient_heat: 0.6995560994287351 + :electricity: 0.18818426017540407 + :network_gas: 0.15316958081325716 + :ambient_heat: 0.6586461590113388 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 26492.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 156.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2162601982168071 - :network_gas: 0.1349592071327692 - :ambient_heat: 0.6487805946504236 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0225_druten/GM0225_druten.derived.ad b/datasets/GM0225_druten/GM0225_druten.derived.ad index d6f2a4ba4c..2097b089c9 100644 --- a/datasets/GM0225_druten/GM0225_druten.derived.ad +++ b/datasets/GM0225_druten/GM0225_druten.derived.ad @@ -1,6 +1,6 @@ - area = GM0225_druten -- id = 128589 -- parent_id = 128589 +- id = 130046 +- parent_id = 130046 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0225_druten/emissions.csv b/datasets/GM0225_druten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0225_druten/emissions.csv +++ b/datasets/GM0225_druten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0225_druten/graph_values.yml b/datasets/GM0225_druten/graph_values.yml index b4470f8f25..b167240fcd 100644 --- a/datasets/GM0225_druten/graph_values.yml +++ b/datasets/GM0225_druten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1716.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15673993273283118 - :network_gas: 0.13793036996942865 - :ambient_heat: 0.7053296972977402 + :electricity: 0.18982580636298307 + :network_gas: 0.14578261207928206 + :ambient_heat: 0.6643915815577349 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8189.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 21.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2179206498631967 - :network_gas: 0.1283174005472108 - :ambient_heat: 0.6537619495895924 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0226_duiven/GM0226_duiven.derived.ad b/datasets/GM0226_duiven/GM0226_duiven.derived.ad index 7c933bb6fa..d6a2e5805c 100644 --- a/datasets/GM0226_duiven/GM0226_duiven.derived.ad +++ b/datasets/GM0226_duiven/GM0226_duiven.derived.ad @@ -1,6 +1,6 @@ - area = GM0226_duiven -- id = 128590 -- parent_id = 128590 +- id = 130047 +- parent_id = 130047 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0226_duiven/emissions.csv b/datasets/GM0226_duiven/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0226_duiven/emissions.csv +++ b/datasets/GM0226_duiven/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0226_duiven/graph_values.yml b/datasets/GM0226_duiven/graph_values.yml index 2b9d19313e..116f54bbe9 100644 --- a/datasets/GM0226_duiven/graph_values.yml +++ b/datasets/GM0226_duiven/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2691.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16945907791798914 - :network_gas: 0.06797507145105981 - :ambient_heat: 0.7625658506309511 + :electricity: 0.20618230339689939 + :network_gas: 0.07217826691913135 + :ambient_heat: 0.7216394296839693 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10750.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.23427951021924712 - :network_gas: 0.0628819591230091 - :ambient_heat: 0.7028385306577438 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0228_ede/GM0228_ede.derived.ad b/datasets/GM0228_ede/GM0228_ede.derived.ad index 8a3b47f56a..8aa58eb1fb 100644 --- a/datasets/GM0228_ede/GM0228_ede.derived.ad +++ b/datasets/GM0228_ede/GM0228_ede.derived.ad @@ -1,6 +1,6 @@ - area = GM0228_ede -- id = 128593 -- parent_id = 128593 +- id = 130050 +- parent_id = 130050 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0228_ede/emissions.csv b/datasets/GM0228_ede/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0228_ede/emissions.csv +++ b/datasets/GM0228_ede/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0228_ede/graph_values.yml b/datasets/GM0228_ede/graph_values.yml index c78dd93e7f..6db5969ce3 100644 --- a/datasets/GM0228_ede/graph_values.yml +++ b/datasets/GM0228_ede/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 12867.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15705656136390492 - :network_gas: 0.13618891249852297 - :ambient_heat: 0.7067545261375721 + :electricity: 0.19023114831489085 + :network_gas: 0.143958570606695 + :ambient_heat: 0.665810281078414 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 49897.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 203.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21833013055190587 - :network_gas: 0.12667947779237418 - :ambient_heat: 0.65499039165572 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0230_elburg/GM0230_elburg.derived.ad b/datasets/GM0230_elburg/GM0230_elburg.derived.ad index fc9f4d58c4..6a68bf0a19 100644 --- a/datasets/GM0230_elburg/GM0230_elburg.derived.ad +++ b/datasets/GM0230_elburg/GM0230_elburg.derived.ad @@ -1,6 +1,6 @@ - area = GM0230_elburg -- id = 128598 -- parent_id = 128598 +- id = 130055 +- parent_id = 130055 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0230_elburg/emissions.csv b/datasets/GM0230_elburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0230_elburg/emissions.csv +++ b/datasets/GM0230_elburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0230_elburg/graph_values.yml b/datasets/GM0230_elburg/graph_values.yml index deb3f88ae1..5f529ec0d3 100644 --- a/datasets/GM0230_elburg/graph_values.yml +++ b/datasets/GM0230_elburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2484.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15526817291625103 - :network_gas: 0.14602504896061935 - :ambient_heat: 0.6987067781231296 + :electricity: 0.1879429106206448 + :network_gas: 0.15425565541076486 + :ambient_heat: 0.6578014339685901 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9583.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 304.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21601577862030946 - :network_gas: 0.13593688551875996 - :ambient_heat: 0.6480473358609307 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0232_epe/GM0232_epe.derived.ad b/datasets/GM0232_epe/GM0232_epe.derived.ad index fa9b9a0c45..342abab75d 100644 --- a/datasets/GM0232_epe/GM0232_epe.derived.ad +++ b/datasets/GM0232_epe/GM0232_epe.derived.ad @@ -1,6 +1,6 @@ - area = GM0232_epe -- id = 128602 -- parent_id = 128602 +- id = 130059 +- parent_id = 130059 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0232_epe/emissions.csv b/datasets/GM0232_epe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0232_epe/emissions.csv +++ b/datasets/GM0232_epe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0232_epe/graph_values.yml b/datasets/GM0232_epe/graph_values.yml index 72b105a11d..3cdc909e70 100644 --- a/datasets/GM0232_epe/graph_values.yml +++ b/datasets/GM0232_epe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2890.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1526932322389113 - :network_gas: 0.16018722268598795 - :ambient_heat: 0.6871195450751008 + :electricity: 0.18465349532684694 + :network_gas: 0.16905804605454003 + :ambient_heat: 0.6462884586186131 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14683.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 26.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21267707344675765 - :network_gas: 0.14929170621296706 - :ambient_heat: 0.6380312203402753 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0233_ermelo/GM0233_ermelo.derived.ad b/datasets/GM0233_ermelo/GM0233_ermelo.derived.ad index 00cb3c5432..ffbdf7971d 100644 --- a/datasets/GM0233_ermelo/GM0233_ermelo.derived.ad +++ b/datasets/GM0233_ermelo/GM0233_ermelo.derived.ad @@ -1,6 +1,6 @@ - area = GM0233_ermelo -- id = 128603 -- parent_id = 128603 +- id = 130060 +- parent_id = 130060 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0233_ermelo/emissions.csv b/datasets/GM0233_ermelo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0233_ermelo/emissions.csv +++ b/datasets/GM0233_ermelo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0233_ermelo/graph_values.yml b/datasets/GM0233_ermelo/graph_values.yml index 8563faabcc..5832c28a1f 100644 --- a/datasets/GM0233_ermelo/graph_values.yml +++ b/datasets/GM0233_ermelo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3957.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15264414565553097 - :network_gas: 0.16045719889457957 - :ambient_heat: 0.6868986554498894 + :electricity: 0.18459084825292704 + :network_gas: 0.16933995830277457 + :ambient_heat: 0.6460691934442984 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11332.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 27.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21261335267931494 - :network_gas: 0.149546589282738 - :ambient_heat: 0.6378400580379472 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0243_harderwijk/GM0243_harderwijk.derived.ad b/datasets/GM0243_harderwijk/GM0243_harderwijk.derived.ad index 76d836a7de..867da76b44 100644 --- a/datasets/GM0243_harderwijk/GM0243_harderwijk.derived.ad +++ b/datasets/GM0243_harderwijk/GM0243_harderwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0243_harderwijk -- id = 128623 -- parent_id = 128623 +- id = 130080 +- parent_id = 130080 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0243_harderwijk/emissions.csv b/datasets/GM0243_harderwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0243_harderwijk/emissions.csv +++ b/datasets/GM0243_harderwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0243_harderwijk/graph_values.yml b/datasets/GM0243_harderwijk/graph_values.yml index 98a0cc8b59..c5d1797abd 100644 --- a/datasets/GM0243_harderwijk/graph_values.yml +++ b/datasets/GM0243_harderwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4652.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1547546617687888 - :network_gas: 0.14884936027166168 - :ambient_heat: 0.6963959779595496 + :electricity: 0.1872864235658879 + :network_gas: 0.15720985151224695 + :ambient_heat: 0.6555037249218651 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20668.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 428.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2153505635141489 - :network_gas: 0.13859774594340216 - :ambient_heat: 0.6460516905424489 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0244_hattem/GM0244_hattem.derived.ad b/datasets/GM0244_hattem/GM0244_hattem.derived.ad index c8bb27a2a8..09a05d6793 100644 --- a/datasets/GM0244_hattem/GM0244_hattem.derived.ad +++ b/datasets/GM0244_hattem/GM0244_hattem.derived.ad @@ -1,6 +1,6 @@ - area = GM0244_hattem -- id = 128626 -- parent_id = 128626 +- id = 130083 +- parent_id = 130083 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0244_hattem/emissions.csv b/datasets/GM0244_hattem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0244_hattem/emissions.csv +++ b/datasets/GM0244_hattem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0244_hattem/graph_values.yml b/datasets/GM0244_hattem/graph_values.yml index 6f5629ef41..e7b3db7071 100644 --- a/datasets/GM0244_hattem/graph_values.yml +++ b/datasets/GM0244_hattem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 908.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15393733585371644 - :network_gas: 0.15334465280455947 - :ambient_heat: 0.6927180113417241 + :electricity: 0.1862420357455381 + :network_gas: 0.16190960363219575 + :ambient_heat: 0.6518483606222661 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5259.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 226.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21429115188123868 - :network_gas: 0.14283539247504293 - :ambient_heat: 0.6428734556437183 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0246_heerde/GM0246_heerde.derived.ad b/datasets/GM0246_heerde/GM0246_heerde.derived.ad index 58207b734d..63a8d5a644 100644 --- a/datasets/GM0246_heerde/GM0246_heerde.derived.ad +++ b/datasets/GM0246_heerde/GM0246_heerde.derived.ad @@ -1,6 +1,6 @@ - area = GM0246_heerde -- id = 128629 -- parent_id = 128629 +- id = 130086 +- parent_id = 130086 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0246_heerde/emissions.csv b/datasets/GM0246_heerde/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0246_heerde/emissions.csv +++ b/datasets/GM0246_heerde/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0246_heerde/graph_values.yml b/datasets/GM0246_heerde/graph_values.yml index f83720a068..a2c9277e9e 100644 --- a/datasets/GM0246_heerde/graph_values.yml +++ b/datasets/GM0246_heerde/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1290.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1544312994273947 - :network_gas: 0.1506278531493292 - :ambient_heat: 0.6949408474232761 + :electricity: 0.18687315362812212 + :network_gas: 0.1590695689737884 + :ambient_heat: 0.6540572773980894 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8005.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2149315158621545 - :network_gas: 0.14027393655137974 - :ambient_heat: 0.6447945475864657 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0252_heumen/GM0252_heumen.derived.ad b/datasets/GM0252_heumen/GM0252_heumen.derived.ad index a516cd00f5..f5cdcf4864 100644 --- a/datasets/GM0252_heumen/GM0252_heumen.derived.ad +++ b/datasets/GM0252_heumen/GM0252_heumen.derived.ad @@ -1,6 +1,6 @@ - area = GM0252_heumen -- id = 128638 -- parent_id = 128638 +- id = 130095 +- parent_id = 130095 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0252_heumen/emissions.csv b/datasets/GM0252_heumen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0252_heumen/emissions.csv +++ b/datasets/GM0252_heumen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0252_heumen/graph_values.yml b/datasets/GM0252_heumen/graph_values.yml index abe78223cc..ecd784fc5d 100644 --- a/datasets/GM0252_heumen/graph_values.yml +++ b/datasets/GM0252_heumen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 959.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15567626871158613 - :network_gas: 0.14378052208627629 - :ambient_heat: 0.7005432092021376 + :electricity: 0.18846480630273882 + :network_gas: 0.15190712137913304 + :ambient_heat: 0.6596280723181283 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7265.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21654421931649798 - :network_gas: 0.13382312273400584 - :ambient_heat: 0.6496326579494963 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0262_lochem/GM0262_lochem.derived.ad b/datasets/GM0262_lochem/GM0262_lochem.derived.ad index bbdd0e3007..297f9ae541 100644 --- a/datasets/GM0262_lochem/GM0262_lochem.derived.ad +++ b/datasets/GM0262_lochem/GM0262_lochem.derived.ad @@ -1,6 +1,6 @@ - area = GM0262_lochem -- id = 128674 -- parent_id = 128674 +- id = 130131 +- parent_id = 130131 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0262_lochem/emissions.csv b/datasets/GM0262_lochem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0262_lochem/emissions.csv +++ b/datasets/GM0262_lochem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0262_lochem/graph_values.yml b/datasets/GM0262_lochem/graph_values.yml index b130975924..5d3991fb86 100644 --- a/datasets/GM0262_lochem/graph_values.yml +++ b/datasets/GM0262_lochem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3215.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15063014675955463 - :network_gas: 0.17153419282244964 - :ambient_heat: 0.6778356604179958 + :electricity: 0.18202239074510254 + :network_gas: 0.18089803412690053 + :ambient_heat: 0.637079575127997 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15122.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 85.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20999651536926575 - :network_gas: 0.16001393852293475 - :ambient_heat: 0.6299895461077996 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0263_maasdriel/GM0263_maasdriel.derived.ad b/datasets/GM0263_maasdriel/GM0263_maasdriel.derived.ad index b3a3e4e9e8..b871cfd04f 100644 --- a/datasets/GM0263_maasdriel/GM0263_maasdriel.derived.ad +++ b/datasets/GM0263_maasdriel/GM0263_maasdriel.derived.ad @@ -1,6 +1,6 @@ - area = GM0263_maasdriel -- id = 128678 -- parent_id = 128678 +- id = 130135 +- parent_id = 130135 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0263_maasdriel/emissions.csv b/datasets/GM0263_maasdriel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0263_maasdriel/emissions.csv +++ b/datasets/GM0263_maasdriel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0263_maasdriel/graph_values.yml b/datasets/GM0263_maasdriel/graph_values.yml index d5634faff8..6e19db0ebc 100644 --- a/datasets/GM0263_maasdriel/graph_values.yml +++ b/datasets/GM0263_maasdriel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1460.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15667544721037907 - :network_gas: 0.13828504034291514 - :ambient_heat: 0.7050395124467058 + :electricity: 0.18974326465052574 + :network_gas: 0.14615405033291437 + :ambient_heat: 0.6641026850165599 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10195.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 60.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21783723968347382 - :network_gas: 0.12865104126610236 - :ambient_heat: 0.6535117190504238 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0267_nijkerk/GM0267_nijkerk.derived.ad b/datasets/GM0267_nijkerk/GM0267_nijkerk.derived.ad index 002281eadc..c625517673 100644 --- a/datasets/GM0267_nijkerk/GM0267_nijkerk.derived.ad +++ b/datasets/GM0267_nijkerk/GM0267_nijkerk.derived.ad @@ -1,6 +1,6 @@ - area = GM0267_nijkerk -- id = 128696 -- parent_id = 128696 +- id = 130153 +- parent_id = 130153 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0267_nijkerk/emissions.csv b/datasets/GM0267_nijkerk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0267_nijkerk/emissions.csv +++ b/datasets/GM0267_nijkerk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0267_nijkerk/graph_values.yml b/datasets/GM0267_nijkerk/graph_values.yml index 8e0205efc3..33f409377e 100644 --- a/datasets/GM0267_nijkerk/graph_values.yml +++ b/datasets/GM0267_nijkerk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4728.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1561516240274299 - :network_gas: 0.1411660678491355 - :ambient_heat: 0.7026823081234346 + :electricity: 0.18907291223602443 + :network_gas: 0.14917064064522775 + :ambient_heat: 0.6617564471187478 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17338.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 337.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21715951208421094 - :network_gas: 0.13136195166315395 - :ambient_heat: 0.6514785362526352 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0268_nijmegen/GM0268_nijmegen.derived.ad b/datasets/GM0268_nijmegen/GM0268_nijmegen.derived.ad index 16a0042837..6eaa86ba42 100644 --- a/datasets/GM0268_nijmegen/GM0268_nijmegen.derived.ad +++ b/datasets/GM0268_nijmegen/GM0268_nijmegen.derived.ad @@ -1,6 +1,6 @@ - area = GM0268_nijmegen -- id = 128697 -- parent_id = 128697 +- id = 130154 +- parent_id = 130154 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0268_nijmegen/emissions.csv b/datasets/GM0268_nijmegen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0268_nijmegen/emissions.csv +++ b/datasets/GM0268_nijmegen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0268_nijmegen/graph_values.yml b/datasets/GM0268_nijmegen/graph_values.yml index 5fa91908bf..f85ad25239 100644 --- a/datasets/GM0268_nijmegen/graph_values.yml +++ b/datasets/GM0268_nijmegen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 24758.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15401649605867546 - :network_gas: 0.15290927167728494 - :ambient_heat: 0.6930742322640396 + :electricity: 0.18634316041176688 + :network_gas: 0.16145454196331438 + :ambient_heat: 0.6522022976249188 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 82196.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5934.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2143937924556412 - :network_gas: 0.14242483017743313 - :ambient_heat: 0.6431813773669258 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0269_oldebroek/GM0269_oldebroek.derived.ad b/datasets/GM0269_oldebroek/GM0269_oldebroek.derived.ad index b0d56dc806..70b6fae0c0 100644 --- a/datasets/GM0269_oldebroek/GM0269_oldebroek.derived.ad +++ b/datasets/GM0269_oldebroek/GM0269_oldebroek.derived.ad @@ -1,6 +1,6 @@ - area = GM0269_oldebroek -- id = 128709 -- parent_id = 128709 +- id = 130166 +- parent_id = 130166 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0269_oldebroek/emissions.csv b/datasets/GM0269_oldebroek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0269_oldebroek/emissions.csv +++ b/datasets/GM0269_oldebroek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0269_oldebroek/graph_values.yml b/datasets/GM0269_oldebroek/graph_values.yml index 84e1e74478..3ac88e1d52 100644 --- a/datasets/GM0269_oldebroek/graph_values.yml +++ b/datasets/GM0269_oldebroek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1605.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1544294637351701 - :network_gas: 0.15063794945656442 - :ambient_heat: 0.6949325868082654 + :electricity: 0.1868708078172972 + :network_gas: 0.1590801251380627 + :ambient_heat: 0.6540490670446402 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9451.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 18.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21492913663067245 - :network_gas: 0.1402834534773079 - :ambient_heat: 0.6447874098920197 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0273_putten/GM0273_putten.derived.ad b/datasets/GM0273_putten/GM0273_putten.derived.ad index 1d8c66d311..04dc1ecf26 100644 --- a/datasets/GM0273_putten/GM0273_putten.derived.ad +++ b/datasets/GM0273_putten/GM0273_putten.derived.ad @@ -1,6 +1,6 @@ - area = GM0273_putten -- id = 128729 -- parent_id = 128729 +- id = 130186 +- parent_id = 130186 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0273_putten/emissions.csv b/datasets/GM0273_putten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0273_putten/emissions.csv +++ b/datasets/GM0273_putten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0273_putten/graph_values.yml b/datasets/GM0273_putten/graph_values.yml index ecd89037fb..b8929a3e60 100644 --- a/datasets/GM0273_putten/graph_values.yml +++ b/datasets/GM0273_putten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2683.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15569744433287538 - :network_gas: 0.1436640561691856 - :ambient_heat: 0.7006384994979392 + :electricity: 0.18849189108987147 + :network_gas: 0.15178523965735802 + :ambient_heat: 0.6597228692527706 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9898.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 18.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21657163425996562 - :network_gas: 0.13371346296013525 - :ambient_heat: 0.6497149027798992 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0274_renkum/GM0274_renkum.derived.ad b/datasets/GM0274_renkum/GM0274_renkum.derived.ad index 079dcbb791..af915a8643 100644 --- a/datasets/GM0274_renkum/GM0274_renkum.derived.ad +++ b/datasets/GM0274_renkum/GM0274_renkum.derived.ad @@ -1,6 +1,6 @@ - area = GM0274_renkum -- id = 128732 -- parent_id = 128732 +- id = 130189 +- parent_id = 130189 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0274_renkum/emissions.csv b/datasets/GM0274_renkum/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0274_renkum/emissions.csv +++ b/datasets/GM0274_renkum/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0274_renkum/graph_values.yml b/datasets/GM0274_renkum/graph_values.yml index 1079652c4e..a93ca42e1a 100644 --- a/datasets/GM0274_renkum/graph_values.yml +++ b/datasets/GM0274_renkum/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2150.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15038631665438176 - :network_gas: 0.17287525840090032 - :ambient_heat: 0.6767384249447179 + :electricity: 0.1817116880571506 + :network_gas: 0.18229619828385796 + :ambient_heat: 0.6359921136589914 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14987.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 422.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20967938207179979 - :network_gas: 0.1612824717127987 - :ambient_heat: 0.6290381462154016 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0275_rheden/GM0275_rheden.derived.ad b/datasets/GM0275_rheden/GM0275_rheden.derived.ad index 41e755b489..7f165b6774 100644 --- a/datasets/GM0275_rheden/GM0275_rheden.derived.ad +++ b/datasets/GM0275_rheden/GM0275_rheden.derived.ad @@ -1,6 +1,6 @@ - area = GM0275_rheden -- id = 128735 -- parent_id = 128735 +- id = 130192 +- parent_id = 130192 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0275_rheden/emissions.csv b/datasets/GM0275_rheden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0275_rheden/emissions.csv +++ b/datasets/GM0275_rheden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0275_rheden/graph_values.yml b/datasets/GM0275_rheden/graph_values.yml index 6989a54f28..1ddf71105a 100644 --- a/datasets/GM0275_rheden/graph_values.yml +++ b/datasets/GM0275_rheden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3994.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1497403479071092 - :network_gas: 0.17642808651089947 - :ambient_heat: 0.6738315655819913 + :electricity: 0.18088882196094383 + :network_gas: 0.18599910117560775 + :ambient_heat: 0.6331120768634484 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21217.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 577.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20883888083965343 - :network_gas: 0.164644476641384 - :ambient_heat: 0.6265166425189624 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0277_rozendaal/GM0277_rozendaal.derived.ad b/datasets/GM0277_rozendaal/GM0277_rozendaal.derived.ad index 12a922df70..00644d93f6 100644 --- a/datasets/GM0277_rozendaal/GM0277_rozendaal.derived.ad +++ b/datasets/GM0277_rozendaal/GM0277_rozendaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0277_rozendaal -- id = 128744 -- parent_id = 128744 +- id = 130201 +- parent_id = 130201 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0277_rozendaal/emissions.csv b/datasets/GM0277_rozendaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0277_rozendaal/emissions.csv +++ b/datasets/GM0277_rozendaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0277_rozendaal/graph_values.yml b/datasets/GM0277_rozendaal/graph_values.yml index 3b7caef094..41438fb194 100644 --- a/datasets/GM0277_rozendaal/graph_values.yml +++ b/datasets/GM0277_rozendaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 185.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15467339009118963 - :network_gas: 0.14929635449845702 - :ambient_heat: 0.6960302554103533 + :electricity: 0.18718254600219997 + :network_gas: 0.15767730123795717 + :ambient_heat: 0.6551401527598429 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 694.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2152452542932283 - :network_gas: 0.1390189828270846 - :ambient_heat: 0.6457357628796871 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0279_scherpenzeel/GM0279_scherpenzeel.derived.ad b/datasets/GM0279_scherpenzeel/GM0279_scherpenzeel.derived.ad index b6c6a9616a..189af913d8 100644 --- a/datasets/GM0279_scherpenzeel/GM0279_scherpenzeel.derived.ad +++ b/datasets/GM0279_scherpenzeel/GM0279_scherpenzeel.derived.ad @@ -1,6 +1,6 @@ - area = GM0279_scherpenzeel -- id = 128747 -- parent_id = 128747 +- id = 130204 +- parent_id = 130204 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0279_scherpenzeel/emissions.csv b/datasets/GM0279_scherpenzeel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0279_scherpenzeel/emissions.csv +++ b/datasets/GM0279_scherpenzeel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0279_scherpenzeel/graph_values.yml b/datasets/GM0279_scherpenzeel/graph_values.yml index 191322ac3c..ad477d53fa 100644 --- a/datasets/GM0279_scherpenzeel/graph_values.yml +++ b/datasets/GM0279_scherpenzeel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 812.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1550816422335736 - :network_gas: 0.14705096771534523 - :ambient_heat: 0.6978673900510811 + :electricity: 0.18770441626022147 + :network_gas: 0.15532888161482006 + :ambient_heat: 0.6569667021249584 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4112.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 68.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2157741772947494 - :network_gas: 0.13690329082100003 - :ambient_heat: 0.6473225318842505 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0281_tiel/GM0281_tiel.derived.ad b/datasets/GM0281_tiel/GM0281_tiel.derived.ad index 5aad2a7a52..03baffde2b 100644 --- a/datasets/GM0281_tiel/GM0281_tiel.derived.ad +++ b/datasets/GM0281_tiel/GM0281_tiel.derived.ad @@ -1,6 +1,6 @@ - area = GM0281_tiel -- id = 128774 -- parent_id = 128774 +- id = 130231 +- parent_id = 130231 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0281_tiel/emissions.csv b/datasets/GM0281_tiel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0281_tiel/emissions.csv +++ b/datasets/GM0281_tiel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0281_tiel/graph_values.yml b/datasets/GM0281_tiel/graph_values.yml index 5d8a87e682..4231f3a8ec 100644 --- a/datasets/GM0281_tiel/graph_values.yml +++ b/datasets/GM0281_tiel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5216.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1554220863868968 - :network_gas: 0.14517852487206767 - :ambient_heat: 0.6993993887410356 + :electricity: 0.18813972559492642 + :network_gas: 0.15336998672084487 + :ambient_heat: 0.6584902876842287 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18255.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 980.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21621510275071093 - :network_gas: 0.13513958899715392 - :ambient_heat: 0.6486453082521351 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0285_voorst/GM0285_voorst.derived.ad b/datasets/GM0285_voorst/GM0285_voorst.derived.ad index 8bcf97f80e..a1cc233d19 100644 --- a/datasets/GM0285_voorst/GM0285_voorst.derived.ad +++ b/datasets/GM0285_voorst/GM0285_voorst.derived.ad @@ -1,6 +1,6 @@ - area = GM0285_voorst -- id = 128800 -- parent_id = 128800 +- id = 130257 +- parent_id = 130257 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0285_voorst/emissions.csv b/datasets/GM0285_voorst/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0285_voorst/emissions.csv +++ b/datasets/GM0285_voorst/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0285_voorst/graph_values.yml b/datasets/GM0285_voorst/graph_values.yml index 0f83a0b66b..8742324add 100644 --- a/datasets/GM0285_voorst/graph_values.yml +++ b/datasets/GM0285_voorst/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2787.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15305558473177316 - :network_gas: 0.15819428397524746 - :ambient_heat: 0.6887501312929792 + :electricity: 0.18511601908769154 + :network_gas: 0.1669766860623983 + :ambient_heat: 0.64790729484991 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10715.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 40.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21314736789980698 - :network_gas: 0.1474105284007697 - :ambient_heat: 0.6394421036994233 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0289_wageningen/GM0289_wageningen.derived.ad b/datasets/GM0289_wageningen/GM0289_wageningen.derived.ad index 24348e3686..3abecb8bf7 100644 --- a/datasets/GM0289_wageningen/GM0289_wageningen.derived.ad +++ b/datasets/GM0289_wageningen/GM0289_wageningen.derived.ad @@ -1,6 +1,6 @@ - area = GM0289_wageningen -- id = 128805 -- parent_id = 128805 +- id = 130262 +- parent_id = 130262 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0289_wageningen/emissions.csv b/datasets/GM0289_wageningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0289_wageningen/emissions.csv +++ b/datasets/GM0289_wageningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0289_wageningen/graph_values.yml b/datasets/GM0289_wageningen/graph_values.yml index 9abb9dd1e5..176138cd66 100644 --- a/datasets/GM0289_wageningen/graph_values.yml +++ b/datasets/GM0289_wageningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4715.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556021021905919 - :network_gas: 0.14418843795174455 - :ambient_heat: 0.7002094598576636 + :electricity: 0.18836994651691483 + :network_gas: 0.1523339910446323 + :ambient_heat: 0.659296062438453 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18053.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 534.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21644819581880198 - :network_gas: 0.13420721672478977 - :ambient_heat: 0.6493445874564082 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0293_westervoort/GM0293_westervoort.derived.ad b/datasets/GM0293_westervoort/GM0293_westervoort.derived.ad index d40558e994..298b51630b 100644 --- a/datasets/GM0293_westervoort/GM0293_westervoort.derived.ad +++ b/datasets/GM0293_westervoort/GM0293_westervoort.derived.ad @@ -1,6 +1,6 @@ - area = GM0293_westervoort -- id = 128811 -- parent_id = 128811 +- id = 130268 +- parent_id = 130268 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0293_westervoort/emissions.csv b/datasets/GM0293_westervoort/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0293_westervoort/emissions.csv +++ b/datasets/GM0293_westervoort/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0293_westervoort/graph_values.yml b/datasets/GM0293_westervoort/graph_values.yml index dadc53f9f7..29437f600b 100644 --- a/datasets/GM0293_westervoort/graph_values.yml +++ b/datasets/GM0293_westervoort/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 620.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16468088878776646 - :network_gas: 0.09425511166728445 - :ambient_heat: 0.741063999544949 + :electricity: 0.20001990010300763 + :network_gas: 0.09990912262247212 + :ambient_heat: 0.7000709772745202 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6739.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22815561589145555 - :network_gas: 0.08737753643417526 - :ambient_heat: 0.6844668476743692 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0294_winterswijk/GM0294_winterswijk.derived.ad b/datasets/GM0294_winterswijk/GM0294_winterswijk.derived.ad index 588c5fbb4e..9ffa37f3c9 100644 --- a/datasets/GM0294_winterswijk/GM0294_winterswijk.derived.ad +++ b/datasets/GM0294_winterswijk/GM0294_winterswijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0294_winterswijk -- id = 128818 -- parent_id = 128818 +- id = 130275 +- parent_id = 130275 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0294_winterswijk/emissions.csv b/datasets/GM0294_winterswijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0294_winterswijk/emissions.csv +++ b/datasets/GM0294_winterswijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0294_winterswijk/graph_values.yml b/datasets/GM0294_winterswijk/graph_values.yml index 0760beceb4..3264a2c9c4 100644 --- a/datasets/GM0294_winterswijk/graph_values.yml +++ b/datasets/GM0294_winterswijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4272.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1533735785797161 - :network_gas: 0.1564453178115615 - :ambient_heat: 0.6901811036087224 + :electricity: 0.18552202156689043 + :network_gas: 0.16514967221261947 + :ambient_heat: 0.6493283062204901 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13072.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 435.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21355996457418713 - :network_gas: 0.1457601417032491 - :ambient_heat: 0.6406798937225637 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0296_wijchen/GM0296_wijchen.derived.ad b/datasets/GM0296_wijchen/GM0296_wijchen.derived.ad index 2fe9108d24..95423d5a51 100644 --- a/datasets/GM0296_wijchen/GM0296_wijchen.derived.ad +++ b/datasets/GM0296_wijchen/GM0296_wijchen.derived.ad @@ -1,6 +1,6 @@ - area = GM0296_wijchen -- id = 128815 -- parent_id = 128815 +- id = 130272 +- parent_id = 130272 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0296_wijchen/emissions.csv b/datasets/GM0296_wijchen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0296_wijchen/emissions.csv +++ b/datasets/GM0296_wijchen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0296_wijchen/graph_values.yml b/datasets/GM0296_wijchen/graph_values.yml index 282a36a7f0..6c434e0fe1 100644 --- a/datasets/GM0296_wijchen/graph_values.yml +++ b/datasets/GM0296_wijchen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2977.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15639841084314351 - :network_gas: 0.1398087403627107 - :ambient_heat: 0.7037928487941458 + :electricity: 0.18938870103460004 + :network_gas: 0.14774958895672313 + :ambient_heat: 0.6628617100086769 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18166.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 43.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21747884663790443 - :network_gas: 0.13008461344838007 - :ambient_heat: 0.6524365399137155 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0297_zaltbommel/GM0297_zaltbommel.derived.ad b/datasets/GM0297_zaltbommel/GM0297_zaltbommel.derived.ad index d7380c4176..b697038f10 100644 --- a/datasets/GM0297_zaltbommel/GM0297_zaltbommel.derived.ad +++ b/datasets/GM0297_zaltbommel/GM0297_zaltbommel.derived.ad @@ -1,6 +1,6 @@ - area = GM0297_zaltbommel -- id = 128824 -- parent_id = 128824 +- id = 130281 +- parent_id = 130281 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0297_zaltbommel/emissions.csv b/datasets/GM0297_zaltbommel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0297_zaltbommel/emissions.csv +++ b/datasets/GM0297_zaltbommel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0297_zaltbommel/graph_values.yml b/datasets/GM0297_zaltbommel/graph_values.yml index e3438aeafc..55c53065e7 100644 --- a/datasets/GM0297_zaltbommel/graph_values.yml +++ b/datasets/GM0297_zaltbommel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6215.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.156337080678121 - :network_gas: 0.14014605627033458 - :ambient_heat: 0.7035168630515445 + :electricity: 0.18931021757326902 + :network_gas: 0.1481027650533649 + :ambient_heat: 0.662587017373366 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11803.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 458.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21739949383496016 - :network_gas: 0.1304020246601569 - :ambient_heat: 0.6521984815048828 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0299_zevenaar/GM0299_zevenaar.derived.ad b/datasets/GM0299_zevenaar/GM0299_zevenaar.derived.ad index 478613acbc..dac47fad77 100644 --- a/datasets/GM0299_zevenaar/GM0299_zevenaar.derived.ad +++ b/datasets/GM0299_zevenaar/GM0299_zevenaar.derived.ad @@ -1,6 +1,6 @@ - area = GM0299_zevenaar -- id = 128828 -- parent_id = 128828 +- id = 130285 +- parent_id = 130285 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0299_zevenaar/emissions.csv b/datasets/GM0299_zevenaar/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0299_zevenaar/emissions.csv +++ b/datasets/GM0299_zevenaar/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0299_zevenaar/graph_values.yml b/datasets/GM0299_zevenaar/graph_values.yml index 8b78935ee5..47ae7894c7 100644 --- a/datasets/GM0299_zevenaar/graph_values.yml +++ b/datasets/GM0299_zevenaar/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3853.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15665290387909722 - :network_gas: 0.1384090286649653 - :ambient_heat: 0.7049380674559375 + :electricity: 0.18971441001336414 + :network_gas: 0.14628389639156067 + :ambient_heat: 0.6640016935950752 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20189.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 174.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21780807940052357 - :network_gas: 0.12876768239790337 - :ambient_heat: 0.653424238201573 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0301_zutphen/GM0301_zutphen.derived.ad b/datasets/GM0301_zutphen/GM0301_zutphen.derived.ad index a408e33fcd..eb25fb377d 100644 --- a/datasets/GM0301_zutphen/GM0301_zutphen.derived.ad +++ b/datasets/GM0301_zutphen/GM0301_zutphen.derived.ad @@ -1,6 +1,6 @@ - area = GM0301_zutphen -- id = 128833 -- parent_id = 128833 +- id = 130290 +- parent_id = 130290 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0301_zutphen/emissions.csv b/datasets/GM0301_zutphen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0301_zutphen/emissions.csv +++ b/datasets/GM0301_zutphen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0301_zutphen/graph_values.yml b/datasets/GM0301_zutphen/graph_values.yml index f0b8d79bf0..234914acf8 100644 --- a/datasets/GM0301_zutphen/graph_values.yml +++ b/datasets/GM0301_zutphen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8095.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15288178226975366 - :network_gas: 0.15915019751635487 - :ambient_heat: 0.6879680202138915 + :electricity: 0.18489415428083356 + :network_gas: 0.1679750791650903 + :ambient_heat: 0.6471307665540761 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22588.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2097.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2129218099946983 - :network_gas: 0.1483127600212044 - :ambient_heat: 0.6387654299840972 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0302_nunspeet/GM0302_nunspeet.derived.ad b/datasets/GM0302_nunspeet/GM0302_nunspeet.derived.ad index 9c67abe22d..35882f29f1 100644 --- a/datasets/GM0302_nunspeet/GM0302_nunspeet.derived.ad +++ b/datasets/GM0302_nunspeet/GM0302_nunspeet.derived.ad @@ -1,6 +1,6 @@ - area = GM0302_nunspeet -- id = 128704 -- parent_id = 128704 +- id = 130161 +- parent_id = 130161 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0302_nunspeet/emissions.csv b/datasets/GM0302_nunspeet/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0302_nunspeet/emissions.csv +++ b/datasets/GM0302_nunspeet/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0302_nunspeet/graph_values.yml b/datasets/GM0302_nunspeet/graph_values.yml index a95dbdfc78..db3f7ea386 100644 --- a/datasets/GM0302_nunspeet/graph_values.yml +++ b/datasets/GM0302_nunspeet/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3118.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15431697999801086 - :network_gas: 0.1512566100109403 - :ambient_heat: 0.6944264099910489 + :electricity: 0.18672707205471306 + :network_gas: 0.15972693702322127 + :ambient_heat: 0.6535459909220657 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11197.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21478333960452273 - :network_gas: 0.14086664158190676 - :ambient_heat: 0.6443500188135706 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0303_dronten/GM0303_dronten.derived.ad b/datasets/GM0303_dronten/GM0303_dronten.derived.ad index fb68aa3fde..401b9f0a96 100644 --- a/datasets/GM0303_dronten/GM0303_dronten.derived.ad +++ b/datasets/GM0303_dronten/GM0303_dronten.derived.ad @@ -1,6 +1,6 @@ - area = GM0303_dronten -- id = 128588 -- parent_id = 128588 +- id = 130045 +- parent_id = 130045 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0303_dronten/emissions.csv b/datasets/GM0303_dronten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0303_dronten/emissions.csv +++ b/datasets/GM0303_dronten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0303_dronten/graph_values.yml b/datasets/GM0303_dronten/graph_values.yml index 994716b9ea..c2f5762490 100644 --- a/datasets/GM0303_dronten/graph_values.yml +++ b/datasets/GM0303_dronten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3409.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15578143351151688 - :network_gas: 0.14320211568665708 - :ambient_heat: 0.701016450801826 + :electricity: 0.18859932198194973 + :network_gas: 0.1513017999303191 + :ambient_heat: 0.6600988780877313 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17696.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 0.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2166803654672303 - :network_gas: 0.1332785381310764 - :ambient_heat: 0.6500410964016932 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0307_amersfoort/GM0307_amersfoort.derived.ad b/datasets/GM0307_amersfoort/GM0307_amersfoort.derived.ad index 6f0993e263..3471bdb210 100644 --- a/datasets/GM0307_amersfoort/GM0307_amersfoort.derived.ad +++ b/datasets/GM0307_amersfoort/GM0307_amersfoort.derived.ad @@ -1,6 +1,6 @@ - area = GM0307_amersfoort -- id = 128525 -- parent_id = 128525 +- id = 129982 +- parent_id = 129982 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0307_amersfoort/emissions.csv b/datasets/GM0307_amersfoort/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0307_amersfoort/emissions.csv +++ b/datasets/GM0307_amersfoort/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0307_amersfoort/graph_values.yml b/datasets/GM0307_amersfoort/graph_values.yml index 1457bcf154..d7d3a3ef25 100644 --- a/datasets/GM0307_amersfoort/graph_values.yml +++ b/datasets/GM0307_amersfoort/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 23078.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1565436443034404 - :network_gas: 0.13900995633107782 - :ambient_heat: 0.7044463993654818 + :electricity: 0.18957456845841525 + :network_gas: 0.14691318431652672 + :ambient_heat: 0.663512247225058 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 68785.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4819.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21766674151043539 - :network_gas: 0.1293330339582562 - :ambient_heat: 0.6530002245313085 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0308_baarn/GM0308_baarn.derived.ad b/datasets/GM0308_baarn/GM0308_baarn.derived.ad index af906224be..296bb081f9 100644 --- a/datasets/GM0308_baarn/GM0308_baarn.derived.ad +++ b/datasets/GM0308_baarn/GM0308_baarn.derived.ad @@ -1,6 +1,6 @@ - area = GM0308_baarn -- id = 128533 -- parent_id = 128533 +- id = 129990 +- parent_id = 129990 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0308_baarn/emissions.csv b/datasets/GM0308_baarn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0308_baarn/emissions.csv +++ b/datasets/GM0308_baarn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0308_baarn/graph_values.yml b/datasets/GM0308_baarn/graph_values.yml index 9005904ecb..8417520a32 100644 --- a/datasets/GM0308_baarn/graph_values.yml +++ b/datasets/GM0308_baarn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3162.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14994603360192246 - :network_gas: 0.1752968151894263 - :ambient_heat: 0.6747571512086512 + :electricity: 0.18115079250730293 + :network_gas: 0.18482023197910288 + :ambient_heat: 0.6340289755135942 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11684.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 547.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20910656101465178 - :network_gas: 0.1635737559413907 - :ambient_heat: 0.6273196830439576 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0310_de_bilt/GM0310_de_bilt.derived.ad b/datasets/GM0310_de_bilt/GM0310_de_bilt.derived.ad index a5eb870e5e..ecc6eb77e8 100644 --- a/datasets/GM0310_de_bilt/GM0310_de_bilt.derived.ad +++ b/datasets/GM0310_de_bilt/GM0310_de_bilt.derived.ad @@ -1,6 +1,6 @@ - area = GM0310_de_bilt -- id = 128571 -- parent_id = 128571 +- id = 130028 +- parent_id = 130028 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0310_de_bilt/emissions.csv b/datasets/GM0310_de_bilt/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0310_de_bilt/emissions.csv +++ b/datasets/GM0310_de_bilt/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0310_de_bilt/graph_values.yml b/datasets/GM0310_de_bilt/graph_values.yml index 292542b38f..56cf0a006b 100644 --- a/datasets/GM0310_de_bilt/graph_values.yml +++ b/datasets/GM0310_de_bilt/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5194.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15103027349245107 - :network_gas: 0.16933349579151913 - :ambient_heat: 0.6796362307160297 + :electricity: 0.1825323748113759 + :network_gas: 0.17860310244548197 + :ambient_heat: 0.6388645227431421 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19696.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 927.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2105167837075729 - :network_gas: 0.15793286516970625 - :ambient_heat: 0.6315503511227208 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0312_bunnik/GM0312_bunnik.derived.ad b/datasets/GM0312_bunnik/GM0312_bunnik.derived.ad index b6d04068e8..e4cf14a964 100644 --- a/datasets/GM0312_bunnik/GM0312_bunnik.derived.ad +++ b/datasets/GM0312_bunnik/GM0312_bunnik.derived.ad @@ -1,6 +1,6 @@ - area = GM0312_bunnik -- id = 128561 -- parent_id = 128561 +- id = 130018 +- parent_id = 130018 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0312_bunnik/emissions.csv b/datasets/GM0312_bunnik/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0312_bunnik/emissions.csv +++ b/datasets/GM0312_bunnik/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0312_bunnik/graph_values.yml b/datasets/GM0312_bunnik/graph_values.yml index 2651463a04..2c532c3bf8 100644 --- a/datasets/GM0312_bunnik/graph_values.yml +++ b/datasets/GM0312_bunnik/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1591.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15064970833298452 - :network_gas: 0.17142660416858507 - :ambient_heat: 0.6779236874984305 + :electricity: 0.18204731963400125 + :network_gas: 0.18078585396148034 + :ambient_heat: 0.6371668264045185 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6470.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 69.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21002195479463084 - :network_gas: 0.1599121808214744 - :ambient_heat: 0.6300658643838948 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0313_bunschoten/GM0313_bunschoten.derived.ad b/datasets/GM0313_bunschoten/GM0313_bunschoten.derived.ad index 4ad3754146..3499ccf2ac 100644 --- a/datasets/GM0313_bunschoten/GM0313_bunschoten.derived.ad +++ b/datasets/GM0313_bunschoten/GM0313_bunschoten.derived.ad @@ -1,6 +1,6 @@ - area = GM0313_bunschoten -- id = 128562 -- parent_id = 128562 +- id = 130019 +- parent_id = 130019 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0313_bunschoten/emissions.csv b/datasets/GM0313_bunschoten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0313_bunschoten/emissions.csv +++ b/datasets/GM0313_bunschoten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0313_bunschoten/graph_values.yml b/datasets/GM0313_bunschoten/graph_values.yml index 85a039a4fb..9d48c6efa6 100644 --- a/datasets/GM0313_bunschoten/graph_values.yml +++ b/datasets/GM0313_bunschoten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1532.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15696441481783321 - :network_gas: 0.13669571850191742 - :ambient_heat: 0.7063398666802494 + :electricity: 0.19011317444022133 + :network_gas: 0.14448945382533596 + :ambient_heat: 0.6653973717344427 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8541.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 218.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21821097371785944 - :network_gas: 0.12715610512856002 - :ambient_heat: 0.6546329211535806 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0317_eemnes/GM0317_eemnes.derived.ad b/datasets/GM0317_eemnes/GM0317_eemnes.derived.ad index 9f9d5981a9..9b736973e6 100644 --- a/datasets/GM0317_eemnes/GM0317_eemnes.derived.ad +++ b/datasets/GM0317_eemnes/GM0317_eemnes.derived.ad @@ -1,6 +1,6 @@ - area = GM0317_eemnes -- id = 128594 -- parent_id = 128594 +- id = 130051 +- parent_id = 130051 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0317_eemnes/emissions.csv b/datasets/GM0317_eemnes/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0317_eemnes/emissions.csv +++ b/datasets/GM0317_eemnes/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0317_eemnes/graph_values.yml b/datasets/GM0317_eemnes/graph_values.yml index e9f3ac9155..193a501a1a 100644 --- a/datasets/GM0317_eemnes/graph_values.yml +++ b/datasets/GM0317_eemnes/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 558.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1526952793046283 - :network_gas: 0.16017596382454438 - :ambient_heat: 0.6871287568708274 + :electricity: 0.18465610795634166 + :network_gas: 0.16904628920448184 + :ambient_heat: 0.6462976028391766 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4079.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2126797307436889 - :network_gas: 0.14928107702524224 - :ambient_heat: 0.638039192231069 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0321_houten/GM0321_houten.derived.ad b/datasets/GM0321_houten/GM0321_houten.derived.ad index 9e154e661e..f85bdeccba 100644 --- a/datasets/GM0321_houten/GM0321_houten.derived.ad +++ b/datasets/GM0321_houten/GM0321_houten.derived.ad @@ -1,6 +1,6 @@ - area = GM0321_houten -- id = 128648 -- parent_id = 128648 +- id = 130105 +- parent_id = 130105 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0321_houten/emissions.csv b/datasets/GM0321_houten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0321_houten/emissions.csv +++ b/datasets/GM0321_houten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0321_houten/graph_values.yml b/datasets/GM0321_houten/graph_values.yml index 5df69cee4a..6044ff957a 100644 --- a/datasets/GM0321_houten/graph_values.yml +++ b/datasets/GM0321_houten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5052.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16159718848600838 - :network_gas: 0.11121546332695392 - :ambient_heat: 0.7271873481870378 + :electricity: 0.19605424584797146 + :network_gas: 0.11775459307792802 + :ambient_heat: 0.6861911610741005 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20672.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 46.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2241896515214512 - :network_gas: 0.10324139391419268 - :ambient_heat: 0.6725689545643561 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0327_leusden/GM0327_leusden.derived.ad b/datasets/GM0327_leusden/GM0327_leusden.derived.ad index 71c7155296..0818777392 100644 --- a/datasets/GM0327_leusden/GM0327_leusden.derived.ad +++ b/datasets/GM0327_leusden/GM0327_leusden.derived.ad @@ -1,6 +1,6 @@ - area = GM0327_leusden -- id = 128671 -- parent_id = 128671 +- id = 130128 +- parent_id = 130128 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0327_leusden/emissions.csv b/datasets/GM0327_leusden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0327_leusden/emissions.csv +++ b/datasets/GM0327_leusden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0327_leusden/graph_values.yml b/datasets/GM0327_leusden/graph_values.yml index a9743d4498..c2bdafb658 100644 --- a/datasets/GM0327_leusden/graph_values.yml +++ b/datasets/GM0327_leusden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3709.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15671207174584403 - :network_gas: 0.13808360539785786 - :ambient_heat: 0.7052043228562981 + :electricity: 0.18979014371995734 + :network_gas: 0.14594309420948082 + :ambient_heat: 0.664266762070562 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13220.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 12.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21788461305992265 - :network_gas: 0.12846154776030708 - :ambient_heat: 0.6536538391797703 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0331_lopik/GM0331_lopik.derived.ad b/datasets/GM0331_lopik/GM0331_lopik.derived.ad index b22a616fc2..b125ec8dc5 100644 --- a/datasets/GM0331_lopik/GM0331_lopik.derived.ad +++ b/datasets/GM0331_lopik/GM0331_lopik.derived.ad @@ -1,6 +1,6 @@ - area = GM0331_lopik -- id = 128676 -- parent_id = 128676 +- id = 130133 +- parent_id = 130133 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0331_lopik/emissions.csv b/datasets/GM0331_lopik/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0331_lopik/emissions.csv +++ b/datasets/GM0331_lopik/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0331_lopik/graph_values.yml b/datasets/GM0331_lopik/graph_values.yml index bcf3b6fea7..ba59eaca3d 100644 --- a/datasets/GM0331_lopik/graph_values.yml +++ b/datasets/GM0331_lopik/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 684.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15598087115297696 - :network_gas: 0.14210520865862664 - :ambient_heat: 0.7019139201883964 + :electricity: 0.18885444971504825 + :network_gas: 0.15015372343888134 + :ambient_heat: 0.6609918268460705 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5822.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 73.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21693852207835213 - :network_gas: 0.13224591168658906 - :ambient_heat: 0.6508155662350588 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0335_montfoort/GM0335_montfoort.derived.ad b/datasets/GM0335_montfoort/GM0335_montfoort.derived.ad index b9ede2dc34..7be0e43b39 100644 --- a/datasets/GM0335_montfoort/GM0335_montfoort.derived.ad +++ b/datasets/GM0335_montfoort/GM0335_montfoort.derived.ad @@ -1,6 +1,6 @@ - area = GM0335_montfoort -- id = 128690 -- parent_id = 128690 +- id = 130147 +- parent_id = 130147 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0335_montfoort/emissions.csv b/datasets/GM0335_montfoort/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0335_montfoort/emissions.csv +++ b/datasets/GM0335_montfoort/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0335_montfoort/graph_values.yml b/datasets/GM0335_montfoort/graph_values.yml index 20d41caaa0..3c11459209 100644 --- a/datasets/GM0335_montfoort/graph_values.yml +++ b/datasets/GM0335_montfoort/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1010.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15575249146107667 - :network_gas: 0.1433612969640782 - :ambient_heat: 0.7008862115748451 + :electricity: 0.18856230135035693 + :network_gas: 0.15146839301807805 + :ambient_heat: 0.659969305631565 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5746.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 171.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21664289841401765 - :network_gas: 0.13342840634392716 - :ambient_heat: 0.6499286952420552 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0339_renswoude/GM0339_renswoude.derived.ad b/datasets/GM0339_renswoude/GM0339_renswoude.derived.ad index b6cce15d39..9e9a2a2e1c 100644 --- a/datasets/GM0339_renswoude/GM0339_renswoude.derived.ad +++ b/datasets/GM0339_renswoude/GM0339_renswoude.derived.ad @@ -1,6 +1,6 @@ - area = GM0339_renswoude -- id = 128733 -- parent_id = 128733 +- id = 130190 +- parent_id = 130190 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0339_renswoude/emissions.csv b/datasets/GM0339_renswoude/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0339_renswoude/emissions.csv +++ b/datasets/GM0339_renswoude/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0339_renswoude/graph_values.yml b/datasets/GM0339_renswoude/graph_values.yml index 514f00cb0f..cc555e9904 100644 --- a/datasets/GM0339_renswoude/graph_values.yml +++ b/datasets/GM0339_renswoude/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 320.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15583346476549562 - :network_gas: 0.14291594378977412 - :ambient_heat: 0.7012505914447302 + :electricity: 0.1886658786525193 + :network_gas: 0.1510022944712249 + :ambient_heat: 0.6603318268762557 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 2149.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2167477203199046 - :network_gas: 0.1330091187203793 - :ambient_heat: 0.6502431609597161 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0340_rhenen/GM0340_rhenen.derived.ad b/datasets/GM0340_rhenen/GM0340_rhenen.derived.ad index 84169abd97..be51331c38 100644 --- a/datasets/GM0340_rhenen/GM0340_rhenen.derived.ad +++ b/datasets/GM0340_rhenen/GM0340_rhenen.derived.ad @@ -1,6 +1,6 @@ - area = GM0340_rhenen -- id = 128736 -- parent_id = 128736 +- id = 130193 +- parent_id = 130193 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0340_rhenen/emissions.csv b/datasets/GM0340_rhenen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0340_rhenen/emissions.csv +++ b/datasets/GM0340_rhenen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0340_rhenen/graph_values.yml b/datasets/GM0340_rhenen/graph_values.yml index 8c07fdd8e0..ea9296e4f4 100644 --- a/datasets/GM0340_rhenen/graph_values.yml +++ b/datasets/GM0340_rhenen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1258.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1548682829006255 - :network_gas: 0.14822444404655982 - :ambient_heat: 0.6969072730528146 + :electricity: 0.18743165892474464 + :network_gas: 0.15655629143391353 + :ambient_heat: 0.656012049641342 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8269.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 219.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.215497777346295 - :network_gas: 0.13800889061481772 - :ambient_heat: 0.6464933320388873 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0342_soest/GM0342_soest.derived.ad b/datasets/GM0342_soest/GM0342_soest.derived.ad index 0fe0a8b3f3..1d629e53d5 100644 --- a/datasets/GM0342_soest/GM0342_soest.derived.ad +++ b/datasets/GM0342_soest/GM0342_soest.derived.ad @@ -1,6 +1,6 @@ - area = GM0342_soest -- id = 128758 -- parent_id = 128758 +- id = 130215 +- parent_id = 130215 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0342_soest/emissions.csv b/datasets/GM0342_soest/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0342_soest/emissions.csv +++ b/datasets/GM0342_soest/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0342_soest/graph_values.yml b/datasets/GM0342_soest/graph_values.yml index 6e7877606d..7f24a68ce4 100644 --- a/datasets/GM0342_soest/graph_values.yml +++ b/datasets/GM0342_soest/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4067.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15363475166379434 - :network_gas: 0.15500886584913107 - :ambient_heat: 0.6913563824870745 + :electricity: 0.1858555475166804 + :network_gas: 0.16364880322598344 + :ambient_heat: 0.650495649257336 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20935.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 301.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21389874897970623 - :network_gas: 0.14440500408117274 - :ambient_heat: 0.641696246939121 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0344_utrecht/GM0344_utrecht.derived.ad b/datasets/GM0344_utrecht/GM0344_utrecht.derived.ad index 3ade0226bc..5c5049baff 100644 --- a/datasets/GM0344_utrecht/GM0344_utrecht.derived.ad +++ b/datasets/GM0344_utrecht/GM0344_utrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0344_utrecht -- id = 128783 -- parent_id = 128783 +- id = 130240 +- parent_id = 130240 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0344_utrecht/emissions.csv b/datasets/GM0344_utrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0344_utrecht/emissions.csv +++ b/datasets/GM0344_utrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0344_utrecht/graph_values.yml b/datasets/GM0344_utrecht/graph_values.yml index ada007d092..8268408d00 100644 --- a/datasets/GM0344_utrecht/graph_values.yml +++ b/datasets/GM0344_utrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 37480.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16079777161602193 - :network_gas: 0.11561225611187935 - :ambient_heat: 0.7235899722720986 + :electricity: 0.19502764377374396 + :network_gas: 0.12237430922233747 + :ambient_heat: 0.6825980470039186 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 159409.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 22086.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2231597449636124 - :network_gas: 0.10736102014554783 - :ambient_heat: 0.6694792348908396 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0345_veenendaal/GM0345_veenendaal.derived.ad b/datasets/GM0345_veenendaal/GM0345_veenendaal.derived.ad index a7a0fd5357..350bb7ad02 100644 --- a/datasets/GM0345_veenendaal/GM0345_veenendaal.derived.ad +++ b/datasets/GM0345_veenendaal/GM0345_veenendaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0345_veenendaal -- id = 128789 -- parent_id = 128789 +- id = 130246 +- parent_id = 130246 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0345_veenendaal/emissions.csv b/datasets/GM0345_veenendaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0345_veenendaal/emissions.csv +++ b/datasets/GM0345_veenendaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0345_veenendaal/graph_values.yml b/datasets/GM0345_veenendaal/graph_values.yml index 88a702de9a..8a9b69ac92 100644 --- a/datasets/GM0345_veenendaal/graph_values.yml +++ b/datasets/GM0345_veenendaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7140.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1580979708362248 - :network_gas: 0.13046116040076383 - :ambient_heat: 0.7114408687630115 + :electricity: 0.19156499883622918 + :network_gas: 0.13795623441202842 + :ambient_heat: 0.6704787667517423 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 28601.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 522.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21967612291323727 - :network_gas: 0.12129550834704861 - :ambient_heat: 0.6590283687397142 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0351_woudenberg/GM0351_woudenberg.derived.ad b/datasets/GM0351_woudenberg/GM0351_woudenberg.derived.ad index 558036f9e7..11ef9be3c5 100644 --- a/datasets/GM0351_woudenberg/GM0351_woudenberg.derived.ad +++ b/datasets/GM0351_woudenberg/GM0351_woudenberg.derived.ad @@ -1,6 +1,6 @@ - area = GM0351_woudenberg -- id = 128822 -- parent_id = 128822 +- id = 130279 +- parent_id = 130279 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0351_woudenberg/emissions.csv b/datasets/GM0351_woudenberg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0351_woudenberg/emissions.csv +++ b/datasets/GM0351_woudenberg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0351_woudenberg/graph_values.yml b/datasets/GM0351_woudenberg/graph_values.yml index ae5b2e357a..9641c00e6a 100644 --- a/datasets/GM0351_woudenberg/graph_values.yml +++ b/datasets/GM0351_woudenberg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 789.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15738933612573136 - :network_gas: 0.13435865130847763 - :ambient_heat: 0.7082520125657911 + :electricity: 0.19065726074252956 + :network_gas: 0.14204106185552934 + :ambient_heat: 0.667301677401941 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5279.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 27.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2187603680264041 - :network_gas: 0.12495852789438122 - :ambient_heat: 0.6562811040792147 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0352_wijk_bij_duurstede/GM0352_wijk_bij_duurstede.derived.ad b/datasets/GM0352_wijk_bij_duurstede/GM0352_wijk_bij_duurstede.derived.ad index d7c3b5a098..9ff72372c2 100644 --- a/datasets/GM0352_wijk_bij_duurstede/GM0352_wijk_bij_duurstede.derived.ad +++ b/datasets/GM0352_wijk_bij_duurstede/GM0352_wijk_bij_duurstede.derived.ad @@ -1,6 +1,6 @@ - area = GM0352_wijk_bij_duurstede -- id = 128817 -- parent_id = 128817 +- id = 130274 +- parent_id = 130274 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0352_wijk_bij_duurstede/emissions.csv b/datasets/GM0352_wijk_bij_duurstede/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0352_wijk_bij_duurstede/emissions.csv +++ b/datasets/GM0352_wijk_bij_duurstede/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0352_wijk_bij_duurstede/graph_values.yml b/datasets/GM0352_wijk_bij_duurstede/graph_values.yml index 091b6c8ff3..ace5550fa9 100644 --- a/datasets/GM0352_wijk_bij_duurstede/graph_values.yml +++ b/datasets/GM0352_wijk_bij_duurstede/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1091.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15414146629800987 - :network_gas: 0.15222193536094566 - :ambient_heat: 0.6936365983410445 + :electricity: 0.1865028177779162 + :network_gas: 0.1607360827564899 + :ambient_heat: 0.6527610994655939 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10238.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 232.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21455581643655944 - :network_gas: 0.14177673425376 - :ambient_heat: 0.6436674493096806 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0353_ijsselstein/GM0353_ijsselstein.derived.ad b/datasets/GM0353_ijsselstein/GM0353_ijsselstein.derived.ad index c814031297..e6a4057181 100644 --- a/datasets/GM0353_ijsselstein/GM0353_ijsselstein.derived.ad +++ b/datasets/GM0353_ijsselstein/GM0353_ijsselstein.derived.ad @@ -1,6 +1,6 @@ - area = GM0353_ijsselstein -- id = 128651 -- parent_id = 128651 +- id = 130108 +- parent_id = 130108 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0353_ijsselstein/emissions.csv b/datasets/GM0353_ijsselstein/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0353_ijsselstein/emissions.csv +++ b/datasets/GM0353_ijsselstein/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0353_ijsselstein/graph_values.yml b/datasets/GM0353_ijsselstein/graph_values.yml index 1e9ba842a6..66e95b476d 100644 --- a/datasets/GM0353_ijsselstein/graph_values.yml +++ b/datasets/GM0353_ijsselstein/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2120.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15708603951047947 - :network_gas: 0.13602678269236274 - :ambient_heat: 0.7068871777971577 + :electricity: 0.1902688904220241 + :network_gas: 0.14378873087421773 + :ambient_heat: 0.6659423787037582 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14438.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 168.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2183682473651754 - :network_gas: 0.12652701053929616 - :ambient_heat: 0.6551047420955285 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0355_zeist/GM0355_zeist.derived.ad b/datasets/GM0355_zeist/GM0355_zeist.derived.ad index 6cca6aa07d..b96e4405d1 100644 --- a/datasets/GM0355_zeist/GM0355_zeist.derived.ad +++ b/datasets/GM0355_zeist/GM0355_zeist.derived.ad @@ -1,6 +1,6 @@ - area = GM0355_zeist -- id = 128827 -- parent_id = 128827 +- id = 130284 +- parent_id = 130284 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0355_zeist/emissions.csv b/datasets/GM0355_zeist/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0355_zeist/emissions.csv +++ b/datasets/GM0355_zeist/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0355_zeist/graph_values.yml b/datasets/GM0355_zeist/graph_values.yml index 93a82f76a1..02b365b04d 100644 --- a/datasets/GM0355_zeist/graph_values.yml +++ b/datasets/GM0355_zeist/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8964.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15204731013219344 - :network_gas: 0.16373979427293617 - :ambient_heat: 0.6842128955948704 + :electricity: 0.1838293113994903 + :network_gas: 0.17276687919520684 + :ambient_heat: 0.643403809405303 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 29560.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1509.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2118383595834605 - :network_gas: 0.15264656166615578 - :ambient_heat: 0.6355150787503838 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0356_nieuwegein/GM0356_nieuwegein.derived.ad b/datasets/GM0356_nieuwegein/GM0356_nieuwegein.derived.ad index aa4d71775e..1ed00d953e 100644 --- a/datasets/GM0356_nieuwegein/GM0356_nieuwegein.derived.ad +++ b/datasets/GM0356_nieuwegein/GM0356_nieuwegein.derived.ad @@ -1,6 +1,6 @@ - area = GM0356_nieuwegein -- id = 128694 -- parent_id = 128694 +- id = 130151 +- parent_id = 130151 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0356_nieuwegein/emissions.csv b/datasets/GM0356_nieuwegein/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0356_nieuwegein/emissions.csv +++ b/datasets/GM0356_nieuwegein/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0356_nieuwegein/graph_values.yml b/datasets/GM0356_nieuwegein/graph_values.yml index 7f6724153f..abc0e4f4ae 100644 --- a/datasets/GM0356_nieuwegein/graph_values.yml +++ b/datasets/GM0356_nieuwegein/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 12644.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16783677965227972 - :network_gas: 0.07689771191246152 - :ambient_heat: 0.7552655084352587 + :electricity: 0.20408762661755075 + :network_gas: 0.081604326322097 + :ambient_heat: 0.7143080470603521 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 29444.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 245.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2322032193514984 - :network_gas: 0.0711871225940041 - :ambient_heat: 0.6966096580544976 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0358_aalsmeer/GM0358_aalsmeer.derived.ad b/datasets/GM0358_aalsmeer/GM0358_aalsmeer.derived.ad index a2c56a6744..45c9a6716b 100644 --- a/datasets/GM0358_aalsmeer/GM0358_aalsmeer.derived.ad +++ b/datasets/GM0358_aalsmeer/GM0358_aalsmeer.derived.ad @@ -1,6 +1,6 @@ - area = GM0358_aalsmeer -- id = 128514 -- parent_id = 128514 +- id = 129971 +- parent_id = 129971 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0358_aalsmeer/emissions.csv b/datasets/GM0358_aalsmeer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0358_aalsmeer/emissions.csv +++ b/datasets/GM0358_aalsmeer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0358_aalsmeer/graph_values.yml b/datasets/GM0358_aalsmeer/graph_values.yml index 4db554f8b8..1083f8ec40 100644 --- a/datasets/GM0358_aalsmeer/graph_values.yml +++ b/datasets/GM0358_aalsmeer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2787.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1546784016713237 - :network_gas: 0.14926879080771965 - :ambient_heat: 0.6960528075209568 + :electricity: 0.1871889513864777 + :network_gas: 0.15764847696621462 + :ambient_heat: 0.6551625716473077 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13276.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 204.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.215251748357674 - :network_gas: 0.13899300656930177 - :ambient_heat: 0.6457552450730243 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0361_alkmaar/GM0361_alkmaar.derived.ad b/datasets/GM0361_alkmaar/GM0361_alkmaar.derived.ad index 95f5d13822..a0a2e75249 100644 --- a/datasets/GM0361_alkmaar/GM0361_alkmaar.derived.ad +++ b/datasets/GM0361_alkmaar/GM0361_alkmaar.derived.ad @@ -1,6 +1,6 @@ - area = GM0361_alkmaar -- id = 128519 -- parent_id = 128519 +- id = 129976 +- parent_id = 129976 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0361_alkmaar/emissions.csv b/datasets/GM0361_alkmaar/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0361_alkmaar/emissions.csv +++ b/datasets/GM0361_alkmaar/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0361_alkmaar/graph_values.yml b/datasets/GM0361_alkmaar/graph_values.yml index e987171a23..b37de847dc 100644 --- a/datasets/GM0361_alkmaar/graph_values.yml +++ b/datasets/GM0361_alkmaar/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 14134.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1537214820042454 - :network_gas: 0.1545318489766503 - :ambient_heat: 0.6917466690191043 + :electricity: 0.18596631877204783 + :network_gas: 0.16315033184198346 + :ambient_heat: 0.6508833493859686 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 51588.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4510.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21401123505550101 - :network_gas: 0.14395505977799364 - :ambient_heat: 0.6420337051665054 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0362_amstelveen/GM0362_amstelveen.derived.ad b/datasets/GM0362_amstelveen/GM0362_amstelveen.derived.ad index 95e912af62..4b480cd8bf 100644 --- a/datasets/GM0362_amstelveen/GM0362_amstelveen.derived.ad +++ b/datasets/GM0362_amstelveen/GM0362_amstelveen.derived.ad @@ -1,6 +1,6 @@ - area = GM0362_amstelveen -- id = 128526 -- parent_id = 128526 +- id = 129983 +- parent_id = 129983 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0362_amstelveen/emissions.csv b/datasets/GM0362_amstelveen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0362_amstelveen/emissions.csv +++ b/datasets/GM0362_amstelveen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0362_amstelveen/graph_values.yml b/datasets/GM0362_amstelveen/graph_values.yml index 1837c15ae8..f0625715b6 100644 --- a/datasets/GM0362_amstelveen/graph_values.yml +++ b/datasets/GM0362_amstelveen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 11718.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15405360097319226 - :network_gas: 0.15270519464744262 - :ambient_heat: 0.6932412043793652 + :electricity: 0.18639056276997704 + :network_gas: 0.16124123103690557 + :ambient_heat: 0.6523682061931173 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 42242.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1997.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21444190087853188 - :network_gas: 0.14223239648587024 - :ambient_heat: 0.6433257026355979 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0363_amsterdam/GM0363_amsterdam.derived.ad b/datasets/GM0363_amsterdam/GM0363_amsterdam.derived.ad index 3a8424b5bc..c5054ef990 100644 --- a/datasets/GM0363_amsterdam/GM0363_amsterdam.derived.ad +++ b/datasets/GM0363_amsterdam/GM0363_amsterdam.derived.ad @@ -1,6 +1,6 @@ - area = GM0363_amsterdam -- id = 128527 -- parent_id = 128527 +- id = 129984 +- parent_id = 129984 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0363_amsterdam/emissions.csv b/datasets/GM0363_amsterdam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0363_amsterdam/emissions.csv +++ b/datasets/GM0363_amsterdam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0363_amsterdam/graph_values.yml b/datasets/GM0363_amsterdam/graph_values.yml index 251e0f7b8b..b64b69bd48 100644 --- a/datasets/GM0363_amsterdam/graph_values.yml +++ b/datasets/GM0363_amsterdam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 163872.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1536034907586839 - :network_gas: 0.15518080082723856 - :ambient_heat: 0.6912157084140775 + :electricity: 0.18581562306285807 + :network_gas: 0.16382846353303926 + :ambient_heat: 0.6503559134041027 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 457831.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 10186.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21385820260033056 - :network_gas: 0.14456718959867546 - :ambient_heat: 0.641574607800994 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0373_bergen/GM0373_bergen.derived.ad b/datasets/GM0373_bergen/GM0373_bergen.derived.ad index a479c25701..8a9dcb3050 100644 --- a/datasets/GM0373_bergen/GM0373_bergen.derived.ad +++ b/datasets/GM0373_bergen/GM0373_bergen.derived.ad @@ -1,6 +1,6 @@ - area = GM0373_bergen -- id = 128541 -- parent_id = 128541 +- id = 129998 +- parent_id = 129998 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0373_bergen/emissions.csv b/datasets/GM0373_bergen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0373_bergen/emissions.csv +++ b/datasets/GM0373_bergen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0373_bergen/graph_values.yml b/datasets/GM0373_bergen/graph_values.yml index a8828877ca..c2c6c30688 100644 --- a/datasets/GM0373_bergen/graph_values.yml +++ b/datasets/GM0373_bergen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8034.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1498788863186848 - :network_gas: 0.17566612524723377 - :ambient_heat: 0.6744549884340815 + :electricity: 0.18106526641654425 + :network_gas: 0.1852050999548894 + :ambient_heat: 0.6337296336285664 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15239.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 273.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20901918067476688 - :network_gas: 0.16392327730093026 - :ambient_heat: 0.6270575420243029 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0375_beverwijk/GM0375_beverwijk.derived.ad b/datasets/GM0375_beverwijk/GM0375_beverwijk.derived.ad index 4cb059f0a5..886405db62 100644 --- a/datasets/GM0375_beverwijk/GM0375_beverwijk.derived.ad +++ b/datasets/GM0375_beverwijk/GM0375_beverwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0375_beverwijk -- id = 128547 -- parent_id = 128547 +- id = 130004 +- parent_id = 130004 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0375_beverwijk/emissions.csv b/datasets/GM0375_beverwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0375_beverwijk/emissions.csv +++ b/datasets/GM0375_beverwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0375_beverwijk/graph_values.yml b/datasets/GM0375_beverwijk/graph_values.yml index d2b438c9cb..fce4b27fe8 100644 --- a/datasets/GM0375_beverwijk/graph_values.yml +++ b/datasets/GM0375_beverwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4888.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15297306864016064 - :network_gas: 0.15864812247911655 - :ambient_heat: 0.6883788088807229 + :electricity: 0.18501068097749418 + :network_gas: 0.16745070825709 + :ambient_heat: 0.6475386107654157 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19501.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1514.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21304028426127752 - :network_gas: 0.1478388629548877 - :ambient_heat: 0.6391208527838348 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0376_blaricum/GM0376_blaricum.derived.ad b/datasets/GM0376_blaricum/GM0376_blaricum.derived.ad index ec763e4c7b..95f8140353 100644 --- a/datasets/GM0376_blaricum/GM0376_blaricum.derived.ad +++ b/datasets/GM0376_blaricum/GM0376_blaricum.derived.ad @@ -1,6 +1,6 @@ - area = GM0376_blaricum -- id = 128549 -- parent_id = 128549 +- id = 130006 +- parent_id = 130006 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0376_blaricum/emissions.csv b/datasets/GM0376_blaricum/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0376_blaricum/emissions.csv +++ b/datasets/GM0376_blaricum/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0376_blaricum/graph_values.yml b/datasets/GM0376_blaricum/graph_values.yml index b3f2403281..b3491a605d 100644 --- a/datasets/GM0376_blaricum/graph_values.yml +++ b/datasets/GM0376_blaricum/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 721.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15600177420992856 - :network_gas: 0.14199024184539275 - :ambient_heat: 0.7020079839446786 + :electricity: 0.18888119178928006 + :network_gas: 0.15003338392743354 + :ambient_heat: 0.6610854242832864 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5136.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 21.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21696557681804882 - :network_gas: 0.1321376927278023 - :ambient_heat: 0.6508967304541488 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0377_bloemendaal/GM0377_bloemendaal.derived.ad b/datasets/GM0377_bloemendaal/GM0377_bloemendaal.derived.ad index fcfe2f5fef..fa6058bdff 100644 --- a/datasets/GM0377_bloemendaal/GM0377_bloemendaal.derived.ad +++ b/datasets/GM0377_bloemendaal/GM0377_bloemendaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0377_bloemendaal -- id = 128550 -- parent_id = 128550 +- id = 130007 +- parent_id = 130007 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0377_bloemendaal/emissions.csv b/datasets/GM0377_bloemendaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0377_bloemendaal/emissions.csv +++ b/datasets/GM0377_bloemendaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0377_bloemendaal/graph_values.yml b/datasets/GM0377_bloemendaal/graph_values.yml index e67c51bb03..1923a68755 100644 --- a/datasets/GM0377_bloemendaal/graph_values.yml +++ b/datasets/GM0377_bloemendaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1509.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14749567854031542 - :network_gas: 0.1887737680282651 - :ambient_heat: 0.6637305534314194 + :electricity: 0.17803244603578838 + :network_gas: 0.19885281178774794 + :ambient_heat: 0.6231147421764637 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10145.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1312.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20591446331405433 - :network_gas: 0.1763421467437805 - :ambient_heat: 0.6177433899421652 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0383_castricum/GM0383_castricum.derived.ad b/datasets/GM0383_castricum/GM0383_castricum.derived.ad index 38e540a3e6..c066f4628f 100644 --- a/datasets/GM0383_castricum/GM0383_castricum.derived.ad +++ b/datasets/GM0383_castricum/GM0383_castricum.derived.ad @@ -1,6 +1,6 @@ - area = GM0383_castricum -- id = 128565 -- parent_id = 128565 +- id = 130022 +- parent_id = 130022 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0383_castricum/emissions.csv b/datasets/GM0383_castricum/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0383_castricum/emissions.csv +++ b/datasets/GM0383_castricum/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0383_castricum/graph_values.yml b/datasets/GM0383_castricum/graph_values.yml index af181da0d0..00e268aea2 100644 --- a/datasets/GM0383_castricum/graph_values.yml +++ b/datasets/GM0383_castricum/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2495.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1528763317382504 - :network_gas: 0.1591801754396227 - :ambient_heat: 0.6879434928221269 + :electricity: 0.18488719694269148 + :network_gas: 0.16800638723288405 + :ambient_heat: 0.6471064158244245 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16223.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 363.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21291473582203216 - :network_gas: 0.14834105671186915 - :ambient_heat: 0.6387442074660987 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0384_diemen/GM0384_diemen.derived.ad b/datasets/GM0384_diemen/GM0384_diemen.derived.ad index 81b4be6e16..813caa7992 100644 --- a/datasets/GM0384_diemen/GM0384_diemen.derived.ad +++ b/datasets/GM0384_diemen/GM0384_diemen.derived.ad @@ -1,6 +1,6 @@ - area = GM0384_diemen -- id = 128580 -- parent_id = 128580 +- id = 130037 +- parent_id = 130037 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0384_diemen/emissions.csv b/datasets/GM0384_diemen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0384_diemen/emissions.csv +++ b/datasets/GM0384_diemen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0384_diemen/graph_values.yml b/datasets/GM0384_diemen/graph_values.yml index e720675f8b..234df5050e 100644 --- a/datasets/GM0384_diemen/graph_values.yml +++ b/datasets/GM0384_diemen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3072.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15938830478089142 - :network_gas: 0.12336432370509723 - :ambient_heat: 0.7172473715140114 + :electricity: 0.19321907600138113 + :network_gas: 0.13051287619584578 + :ambient_heat: 0.676268047802773 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15467.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 185.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22134211605853285 - :network_gas: 0.11463153576586624 - :ambient_heat: 0.6640263481756009 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0385_edam_volendam/GM0385_edam_volendam.derived.ad b/datasets/GM0385_edam_volendam/GM0385_edam_volendam.derived.ad index bf8456b5f9..b129686049 100644 --- a/datasets/GM0385_edam_volendam/GM0385_edam_volendam.derived.ad +++ b/datasets/GM0385_edam_volendam/GM0385_edam_volendam.derived.ad @@ -1,6 +1,6 @@ - area = GM0385_edam_volendam -- id = 128592 -- parent_id = 128592 +- id = 130049 +- parent_id = 130049 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0385_edam_volendam/emissions.csv b/datasets/GM0385_edam_volendam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0385_edam_volendam/emissions.csv +++ b/datasets/GM0385_edam_volendam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0385_edam_volendam/graph_values.yml b/datasets/GM0385_edam_volendam/graph_values.yml index b5b2c06b73..151b7bd930 100644 --- a/datasets/GM0385_edam_volendam/graph_values.yml +++ b/datasets/GM0385_edam_volendam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2558.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1532450888885955 - :network_gas: 0.15715201111272478 - :ambient_heat: 0.6896028999986799 + :electricity: 0.18535795952746673 + :network_gas: 0.1658879524783989 + :ambient_heat: 0.6487540879941344 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15416.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 652.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2133932634084681 - :network_gas: 0.1464269463661255 - :ambient_heat: 0.6401797902254066 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0388_enkhuizen/GM0388_enkhuizen.derived.ad b/datasets/GM0388_enkhuizen/GM0388_enkhuizen.derived.ad index 8a84d231f7..e2a2679997 100644 --- a/datasets/GM0388_enkhuizen/GM0388_enkhuizen.derived.ad +++ b/datasets/GM0388_enkhuizen/GM0388_enkhuizen.derived.ad @@ -1,6 +1,6 @@ - area = GM0388_enkhuizen -- id = 128600 -- parent_id = 128600 +- id = 130057 +- parent_id = 130057 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0388_enkhuizen/emissions.csv b/datasets/GM0388_enkhuizen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0388_enkhuizen/emissions.csv +++ b/datasets/GM0388_enkhuizen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0388_enkhuizen/graph_values.yml b/datasets/GM0388_enkhuizen/graph_values.yml index d256078814..00d338baa1 100644 --- a/datasets/GM0388_enkhuizen/graph_values.yml +++ b/datasets/GM0388_enkhuizen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1381.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15230893794172068 - :network_gas: 0.16230084132053632 - :ambient_heat: 0.685390220737743 + :electricity: 0.18416309682729665 + :network_gas: 0.1712648425557758 + :ambient_heat: 0.6445720606169276 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8878.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 904.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21217813498076935 - :network_gas: 0.1512874600769204 - :ambient_heat: 0.6365344049423103 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0392_haarlem/GM0392_haarlem.derived.ad b/datasets/GM0392_haarlem/GM0392_haarlem.derived.ad index 18aea80b73..f32ecefc46 100644 --- a/datasets/GM0392_haarlem/GM0392_haarlem.derived.ad +++ b/datasets/GM0392_haarlem/GM0392_haarlem.derived.ad @@ -1,6 +1,6 @@ - area = GM0392_haarlem -- id = 128619 -- parent_id = 128619 +- id = 130076 +- parent_id = 130076 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0392_haarlem/emissions.csv b/datasets/GM0392_haarlem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0392_haarlem/emissions.csv +++ b/datasets/GM0392_haarlem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0392_haarlem/graph_values.yml b/datasets/GM0392_haarlem/graph_values.yml index ef2c21000d..d264936a25 100644 --- a/datasets/GM0392_haarlem/graph_values.yml +++ b/datasets/GM0392_haarlem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 15954.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14967672104722257 - :network_gas: 0.17677803424027577 - :ambient_heat: 0.6735452447125017 + :electricity: 0.18080779183875162 + :network_gas: 0.18636373726301936 + :ambient_heat: 0.632828470898229 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 77093.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 21955.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2087560666460567 - :network_gas: 0.16497573341577101 - :ambient_heat: 0.6262681999381723 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0394_haarlemmermeer/GM0394_haarlemmermeer.derived.ad b/datasets/GM0394_haarlemmermeer/GM0394_haarlemmermeer.derived.ad index 62e21eb034..5d3ea6d475 100644 --- a/datasets/GM0394_haarlemmermeer/GM0394_haarlemmermeer.derived.ad +++ b/datasets/GM0394_haarlemmermeer/GM0394_haarlemmermeer.derived.ad @@ -1,6 +1,6 @@ - area = GM0394_haarlemmermeer -- id = 128620 -- parent_id = 128620 +- id = 130077 +- parent_id = 130077 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0394_haarlemmermeer/emissions.csv b/datasets/GM0394_haarlemmermeer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0394_haarlemmermeer/emissions.csv +++ b/datasets/GM0394_haarlemmermeer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0394_haarlemmermeer/graph_values.yml b/datasets/GM0394_haarlemmermeer/graph_values.yml index febc6452c7..f69597ccc5 100644 --- a/datasets/GM0394_haarlemmermeer/graph_values.yml +++ b/datasets/GM0394_haarlemmermeer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 30566.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15603201314128287 - :network_gas: 0.14182392772294422 - :ambient_heat: 0.7021440591357729 + :electricity: 0.18891987832043125 + :network_gas: 0.14985929428061023 + :ambient_heat: 0.6612208273989585 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 65149.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 794.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21700471405087426 - :network_gas: 0.1319811437965007 - :ambient_heat: 0.6510141421526251 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0396_heemskerk/GM0396_heemskerk.derived.ad b/datasets/GM0396_heemskerk/GM0396_heemskerk.derived.ad index 10357cd37b..f56a232020 100644 --- a/datasets/GM0396_heemskerk/GM0396_heemskerk.derived.ad +++ b/datasets/GM0396_heemskerk/GM0396_heemskerk.derived.ad @@ -1,6 +1,6 @@ - area = GM0396_heemskerk -- id = 128627 -- parent_id = 128627 +- id = 130084 +- parent_id = 130084 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0396_heemskerk/emissions.csv b/datasets/GM0396_heemskerk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0396_heemskerk/emissions.csv +++ b/datasets/GM0396_heemskerk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0396_heemskerk/graph_values.yml b/datasets/GM0396_heemskerk/graph_values.yml index cf3dde2b06..31d75bf86e 100644 --- a/datasets/GM0396_heemskerk/graph_values.yml +++ b/datasets/GM0396_heemskerk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3510.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15421713074842894 - :network_gas: 0.151805780883641 - :ambient_heat: 0.6939770883679302 + :electricity: 0.18659949092541386 + :network_gas: 0.16030105295142938 + :ambient_heat: 0.6530994561231568 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17591.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 89.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2146539066748073 - :network_gas: 0.14138437330076845 - :ambient_heat: 0.6439617200244242 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0397_heemstede/GM0397_heemstede.derived.ad b/datasets/GM0397_heemstede/GM0397_heemstede.derived.ad index 539a2dfc26..29d234ab56 100644 --- a/datasets/GM0397_heemstede/GM0397_heemstede.derived.ad +++ b/datasets/GM0397_heemstede/GM0397_heemstede.derived.ad @@ -1,6 +1,6 @@ - area = GM0397_heemstede -- id = 128628 -- parent_id = 128628 +- id = 130085 +- parent_id = 130085 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0397_heemstede/emissions.csv b/datasets/GM0397_heemstede/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0397_heemstede/emissions.csv +++ b/datasets/GM0397_heemstede/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0397_heemstede/graph_values.yml b/datasets/GM0397_heemstede/graph_values.yml index f338e376ae..6b71a08ff9 100644 --- a/datasets/GM0397_heemstede/graph_values.yml +++ b/datasets/GM0397_heemstede/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2575.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14845058502712585 - :network_gas: 0.18352178235080777 - :ambient_heat: 0.6680276326220664 + :electricity: 0.17924701154915082 + :network_gas: 0.19338725892029887 + :ambient_heat: 0.6273657295305504 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12813.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2159.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20715925808681038 - :network_gas: 0.1713629676527563 - :ambient_heat: 0.6214777742604334 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0399_heiloo/GM0399_heiloo.derived.ad b/datasets/GM0399_heiloo/GM0399_heiloo.derived.ad index 8e44714e27..206fc32242 100644 --- a/datasets/GM0399_heiloo/GM0399_heiloo.derived.ad +++ b/datasets/GM0399_heiloo/GM0399_heiloo.derived.ad @@ -1,6 +1,6 @@ - area = GM0399_heiloo -- id = 128633 -- parent_id = 128633 +- id = 130090 +- parent_id = 130090 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0399_heiloo/emissions.csv b/datasets/GM0399_heiloo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0399_heiloo/emissions.csv +++ b/datasets/GM0399_heiloo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0399_heiloo/graph_values.yml b/datasets/GM0399_heiloo/graph_values.yml index 84e0067e8c..39afafd0d7 100644 --- a/datasets/GM0399_heiloo/graph_values.yml +++ b/datasets/GM0399_heiloo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1702.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1527218616949107 - :network_gas: 0.16002976067799127 - :ambient_heat: 0.6872483776270981 + :electricity: 0.1846900348876715 + :network_gas: 0.16889361778842937 + :ambient_heat: 0.6464163473238992 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10934.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 96.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21271423691645433 - :network_gas: 0.14914305233418043 - :ambient_heat: 0.6381427107493652 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0400_den_helder/GM0400_den_helder.derived.ad b/datasets/GM0400_den_helder/GM0400_den_helder.derived.ad index eac36dbc61..cb6a43d115 100644 --- a/datasets/GM0400_den_helder/GM0400_den_helder.derived.ad +++ b/datasets/GM0400_den_helder/GM0400_den_helder.derived.ad @@ -1,6 +1,6 @@ - area = GM0400_den_helder -- id = 128577 -- parent_id = 128577 +- id = 130034 +- parent_id = 130034 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0400_den_helder/emissions.csv b/datasets/GM0400_den_helder/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0400_den_helder/emissions.csv +++ b/datasets/GM0400_den_helder/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0400_den_helder/graph_values.yml b/datasets/GM0400_den_helder/graph_values.yml index a0931f44d8..9d27c81ef9 100644 --- a/datasets/GM0400_den_helder/graph_values.yml +++ b/datasets/GM0400_den_helder/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8805.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14937417038567777 - :network_gas: 0.1784420628787723 - :ambient_heat: 0.67218376673555 + :electricity: 0.18042253842107392 + :network_gas: 0.18809738019830546 + :ambient_heat: 0.6314800813806206 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 28369.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3822.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20836221439465308 - :network_gas: 0.1665511424213856 - :ambient_heat: 0.6250866431839615 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0402_hilversum/GM0402_hilversum.derived.ad b/datasets/GM0402_hilversum/GM0402_hilversum.derived.ad index 8840363f4e..39f279d589 100644 --- a/datasets/GM0402_hilversum/GM0402_hilversum.derived.ad +++ b/datasets/GM0402_hilversum/GM0402_hilversum.derived.ad @@ -1,6 +1,6 @@ - area = GM0402_hilversum -- id = 128642 -- parent_id = 128642 +- id = 130099 +- parent_id = 130099 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0402_hilversum/emissions.csv b/datasets/GM0402_hilversum/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0402_hilversum/emissions.csv +++ b/datasets/GM0402_hilversum/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0402_hilversum/graph_values.yml b/datasets/GM0402_hilversum/graph_values.yml index d16d062cde..6597bdb9ca 100644 --- a/datasets/GM0402_hilversum/graph_values.yml +++ b/datasets/GM0402_hilversum/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 15277.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14938379755423886 - :network_gas: 0.1783891134516862 - :ambient_heat: 0.6722270889940749 + :electricity: 0.1804347958923569 + :network_gas: 0.18804222149621697 + :ambient_heat: 0.631522982611426 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 42918.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8091.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2083747484194476 - :network_gas: 0.16650100632220746 - :ambient_heat: 0.625124245258345 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0405_hoorn/GM0405_hoorn.derived.ad b/datasets/GM0405_hoorn/GM0405_hoorn.derived.ad index c6d2084ddf..b70535fd98 100644 --- a/datasets/GM0405_hoorn/GM0405_hoorn.derived.ad +++ b/datasets/GM0405_hoorn/GM0405_hoorn.derived.ad @@ -1,6 +1,6 @@ - area = GM0405_hoorn -- id = 128646 -- parent_id = 128646 +- id = 130103 +- parent_id = 130103 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0405_hoorn/emissions.csv b/datasets/GM0405_hoorn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0405_hoorn/emissions.csv +++ b/datasets/GM0405_hoorn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0405_hoorn/graph_values.yml b/datasets/GM0405_hoorn/graph_values.yml index 117fb2d5b2..1de250638f 100644 --- a/datasets/GM0405_hoorn/graph_values.yml +++ b/datasets/GM0405_hoorn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7788.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15460177727487417 - :network_gas: 0.149690224988192 - :ambient_heat: 0.6957079977369338 + :electricity: 0.18709101901085606 + :network_gas: 0.15808917330618638 + :ambient_heat: 0.6548198076829576 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 33643.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1483.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21515245439939565 - :network_gas: 0.1393901824024152 - :ambient_heat: 0.6454573631981891 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0406_huizen/GM0406_huizen.derived.ad b/datasets/GM0406_huizen/GM0406_huizen.derived.ad index ad3a8165d8..8803bf9add 100644 --- a/datasets/GM0406_huizen/GM0406_huizen.derived.ad +++ b/datasets/GM0406_huizen/GM0406_huizen.derived.ad @@ -1,6 +1,6 @@ - area = GM0406_huizen -- id = 128649 -- parent_id = 128649 +- id = 130106 +- parent_id = 130106 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0406_huizen/emissions.csv b/datasets/GM0406_huizen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0406_huizen/emissions.csv +++ b/datasets/GM0406_huizen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0406_huizen/graph_values.yml b/datasets/GM0406_huizen/graph_values.yml index 622f2f31db..8df32c126b 100644 --- a/datasets/GM0406_huizen/graph_values.yml +++ b/datasets/GM0406_huizen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3184.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1524768430243796 - :network_gas: 0.16137736336591227 - :ambient_heat: 0.6861457936097082 + :electricity: 0.1843773439283933 + :network_gas: 0.1703007291795447 + :ambient_heat: 0.6453219268920619 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19010.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 422.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2123961511752331 - :network_gas: 0.1504153952990653 - :ambient_heat: 0.6371884535257016 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0415_landsmeer/GM0415_landsmeer.derived.ad b/datasets/GM0415_landsmeer/GM0415_landsmeer.derived.ad index 5026978fb6..1df675daa2 100644 --- a/datasets/GM0415_landsmeer/GM0415_landsmeer.derived.ad +++ b/datasets/GM0415_landsmeer/GM0415_landsmeer.derived.ad @@ -1,6 +1,6 @@ - area = GM0415_landsmeer -- id = 128662 -- parent_id = 128662 +- id = 130119 +- parent_id = 130119 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0415_landsmeer/emissions.csv b/datasets/GM0415_landsmeer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0415_landsmeer/emissions.csv +++ b/datasets/GM0415_landsmeer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0415_landsmeer/graph_values.yml b/datasets/GM0415_landsmeer/graph_values.yml index 96300b0bee..8576ee2d0c 100644 --- a/datasets/GM0415_landsmeer/graph_values.yml +++ b/datasets/GM0415_landsmeer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 508.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15497101096020208 - :network_gas: 0.14765943971888862 - :ambient_heat: 0.6973695493209093 + :electricity: 0.1875629806075153 + :network_gas: 0.15596534299026915 + :ambient_heat: 0.6564716764022155 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4888.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21563086469636628 - :network_gas: 0.13747654121453265 - :ambient_heat: 0.6468925940891012 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0417_laren/GM0417_laren.derived.ad b/datasets/GM0417_laren/GM0417_laren.derived.ad index dfb4b32d42..594c58e473 100644 --- a/datasets/GM0417_laren/GM0417_laren.derived.ad +++ b/datasets/GM0417_laren/GM0417_laren.derived.ad @@ -1,6 +1,6 @@ - area = GM0417_laren -- id = 128664 -- parent_id = 128664 +- id = 130121 +- parent_id = 130121 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0417_laren/emissions.csv b/datasets/GM0417_laren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0417_laren/emissions.csv +++ b/datasets/GM0417_laren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0417_laren/graph_values.yml b/datasets/GM0417_laren/graph_values.yml index 342baf53ff..07f62794d4 100644 --- a/datasets/GM0417_laren/graph_values.yml +++ b/datasets/GM0417_laren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1436.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14694837215088066 - :network_gas: 0.19178395317015642 - :ambient_heat: 0.661267674678963 + :electricity: 0.17733669407570046 + :network_gas: 0.20198370022369938 + :ambient_heat: 0.6206796057006001 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5427.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 257.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20520052828317567 - :network_gas: 0.1791978868672951 - :ambient_heat: 0.6156015848495292 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0420_medemblik/GM0420_medemblik.derived.ad b/datasets/GM0420_medemblik/GM0420_medemblik.derived.ad index adc4c5f992..6cd7ebab38 100644 --- a/datasets/GM0420_medemblik/GM0420_medemblik.derived.ad +++ b/datasets/GM0420_medemblik/GM0420_medemblik.derived.ad @@ -1,6 +1,6 @@ - area = GM0420_medemblik -- id = 128682 -- parent_id = 128682 +- id = 130139 +- parent_id = 130139 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0420_medemblik/emissions.csv b/datasets/GM0420_medemblik/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0420_medemblik/emissions.csv +++ b/datasets/GM0420_medemblik/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0420_medemblik/graph_values.yml b/datasets/GM0420_medemblik/graph_values.yml index c1c5545f44..342a0c9ff8 100644 --- a/datasets/GM0420_medemblik/graph_values.yml +++ b/datasets/GM0420_medemblik/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3263.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15401674152263733 - :network_gas: 0.15290792162549466 - :ambient_heat: 0.6930753368518681 + :electricity: 0.18634347399327436 + :network_gas: 0.16145313084445034 + :ambient_heat: 0.6522033951622753 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19174.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 305.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21439411071746747 - :network_gas: 0.1424235571301279 - :ambient_heat: 0.6431823321524047 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0431_oostzaan/GM0431_oostzaan.derived.ad b/datasets/GM0431_oostzaan/GM0431_oostzaan.derived.ad index 98fa31ec27..d86e663447 100644 --- a/datasets/GM0431_oostzaan/GM0431_oostzaan.derived.ad +++ b/datasets/GM0431_oostzaan/GM0431_oostzaan.derived.ad @@ -1,6 +1,6 @@ - area = GM0431_oostzaan -- id = 128716 -- parent_id = 128716 +- id = 130173 +- parent_id = 130173 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0431_oostzaan/emissions.csv b/datasets/GM0431_oostzaan/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0431_oostzaan/emissions.csv +++ b/datasets/GM0431_oostzaan/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0431_oostzaan/graph_values.yml b/datasets/GM0431_oostzaan/graph_values.yml index 21ecc21707..58e5b24c3c 100644 --- a/datasets/GM0431_oostzaan/graph_values.yml +++ b/datasets/GM0431_oostzaan/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 432.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15496120087359946 - :network_gas: 0.147713395195203 - :ambient_heat: 0.6973254039311976 + :electricity: 0.18755043953027334 + :network_gas: 0.15602177792105437 + :ambient_heat: 0.6564277825486723 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4100.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21561815595397826 - :network_gas: 0.1375273761840846 - :ambient_heat: 0.6468544678619371 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0432_opmeer/GM0432_opmeer.derived.ad b/datasets/GM0432_opmeer/GM0432_opmeer.derived.ad index f7a457371b..8499b93df4 100644 --- a/datasets/GM0432_opmeer/GM0432_opmeer.derived.ad +++ b/datasets/GM0432_opmeer/GM0432_opmeer.derived.ad @@ -1,6 +1,6 @@ - area = GM0432_opmeer -- id = 128717 -- parent_id = 128717 +- id = 130174 +- parent_id = 130174 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0432_opmeer/emissions.csv b/datasets/GM0432_opmeer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0432_opmeer/emissions.csv +++ b/datasets/GM0432_opmeer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0432_opmeer/graph_values.yml b/datasets/GM0432_opmeer/graph_values.yml index 5d50b7a2bc..aca3731e76 100644 --- a/datasets/GM0432_opmeer/graph_values.yml +++ b/datasets/GM0432_opmeer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 768.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15461196311354355 - :network_gas: 0.14963420287551052 - :ambient_heat: 0.695753834010946 + :electricity: 0.18710403704913392 + :network_gas: 0.15803059204757552 + :ambient_heat: 0.6548653709032904 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4957.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 9.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2151656541398629 - :network_gas: 0.13933738344054603 - :ambient_heat: 0.6454969624195911 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0437_ouder_amstel/GM0437_ouder_amstel.derived.ad b/datasets/GM0437_ouder_amstel/GM0437_ouder_amstel.derived.ad index 1a7a4792a3..47a85b1b61 100644 --- a/datasets/GM0437_ouder_amstel/GM0437_ouder_amstel.derived.ad +++ b/datasets/GM0437_ouder_amstel/GM0437_ouder_amstel.derived.ad @@ -1,6 +1,6 @@ - area = GM0437_ouder_amstel -- id = 128721 -- parent_id = 128721 +- id = 130178 +- parent_id = 130178 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0437_ouder_amstel/emissions.csv b/datasets/GM0437_ouder_amstel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0437_ouder_amstel/emissions.csv +++ b/datasets/GM0437_ouder_amstel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0437_ouder_amstel/graph_values.yml b/datasets/GM0437_ouder_amstel/graph_values.yml index ad5d1d5267..524de356df 100644 --- a/datasets/GM0437_ouder_amstel/graph_values.yml +++ b/datasets/GM0437_ouder_amstel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3428.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.154775309779879 - :network_gas: 0.14873579621066554 - :ambient_heat: 0.6964888940094555 + :electricity: 0.18731281584044507 + :network_gas: 0.15709108610165579 + :ambient_heat: 0.6555960980578992 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6296.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 135.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21537731732799514 - :network_gas: 0.13849073068801718 - :ambient_heat: 0.6461319519839877 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0439_purmerend/GM0439_purmerend.derived.ad b/datasets/GM0439_purmerend/GM0439_purmerend.derived.ad index 278a594d8b..e5eac66f5d 100644 --- a/datasets/GM0439_purmerend/GM0439_purmerend.derived.ad +++ b/datasets/GM0439_purmerend/GM0439_purmerend.derived.ad @@ -1,6 +1,6 @@ - area = GM0439_purmerend -- id = 128728 -- parent_id = 128728 +- id = 130185 +- parent_id = 130185 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0439_purmerend/emissions.csv b/datasets/GM0439_purmerend/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0439_purmerend/emissions.csv +++ b/datasets/GM0439_purmerend/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0439_purmerend/graph_values.yml b/datasets/GM0439_purmerend/graph_values.yml index 8b24b51a91..116a16cd54 100644 --- a/datasets/GM0439_purmerend/graph_values.yml +++ b/datasets/GM0439_purmerend/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5815.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.17002245423577123 - :network_gas: 0.0648765017032582 - :ambient_heat: 0.7651010440609706 + :electricity: 0.20691030309662897 + :network_gas: 0.06890226344086353 + :ambient_heat: 0.7241874334625074 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 41148.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 463.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.23499984814158031 - :network_gas: 0.060000607433676245 - :ambient_heat: 0.7049995444247434 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0441_schagen/GM0441_schagen.derived.ad b/datasets/GM0441_schagen/GM0441_schagen.derived.ad index def8cc8aca..9d11e363cd 100644 --- a/datasets/GM0441_schagen/GM0441_schagen.derived.ad +++ b/datasets/GM0441_schagen/GM0441_schagen.derived.ad @@ -1,6 +1,6 @@ - area = GM0441_schagen -- id = 128746 -- parent_id = 128746 +- id = 130203 +- parent_id = 130203 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0441_schagen/emissions.csv b/datasets/GM0441_schagen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0441_schagen/emissions.csv +++ b/datasets/GM0441_schagen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0441_schagen/graph_values.yml b/datasets/GM0441_schagen/graph_values.yml index 1a8d243dc7..7f58d496f8 100644 --- a/datasets/GM0441_schagen/graph_values.yml +++ b/datasets/GM0441_schagen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5314.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1535714480598116 - :network_gas: 0.1553570356710363 - :ambient_heat: 0.6910715162691522 + :electricity: 0.18577470109124541 + :network_gas: 0.16401261267676887 + :ambient_heat: 0.6502126862319857 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20529.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 251.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21381664103831163 - :network_gas: 0.14473343584675108 - :ambient_heat: 0.6414499231149372 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0448_texel/GM0448_texel.derived.ad b/datasets/GM0448_texel/GM0448_texel.derived.ad index fae9ab424a..c1f2138d31 100644 --- a/datasets/GM0448_texel/GM0448_texel.derived.ad +++ b/datasets/GM0448_texel/GM0448_texel.derived.ad @@ -1,6 +1,6 @@ - area = GM0448_texel -- id = 128771 -- parent_id = 128771 +- id = 130228 +- parent_id = 130228 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0448_texel/emissions.csv b/datasets/GM0448_texel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0448_texel/emissions.csv +++ b/datasets/GM0448_texel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0448_texel/graph_values.yml b/datasets/GM0448_texel/graph_values.yml index 0fc5d82c43..765e6588a0 100644 --- a/datasets/GM0448_texel/graph_values.yml +++ b/datasets/GM0448_texel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4968.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.151917295247268 - :network_gas: 0.1644548761400261 - :ambient_heat: 0.6836278286127059 + :electricity: 0.18366346163091976 + :network_gas: 0.17351320425400668 + :ambient_heat: 0.6428233341150736 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6770.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 304.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21166948010254516 - :network_gas: 0.1533220795898172 - :ambient_heat: 0.6350084403076377 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0450_uitgeest/GM0450_uitgeest.derived.ad b/datasets/GM0450_uitgeest/GM0450_uitgeest.derived.ad index 0f455c5692..8e67380492 100644 --- a/datasets/GM0450_uitgeest/GM0450_uitgeest.derived.ad +++ b/datasets/GM0450_uitgeest/GM0450_uitgeest.derived.ad @@ -1,6 +1,6 @@ - area = GM0450_uitgeest -- id = 128780 -- parent_id = 128780 +- id = 130237 +- parent_id = 130237 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0450_uitgeest/emissions.csv b/datasets/GM0450_uitgeest/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0450_uitgeest/emissions.csv +++ b/datasets/GM0450_uitgeest/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0450_uitgeest/graph_values.yml b/datasets/GM0450_uitgeest/graph_values.yml index 3a87c00dfa..4490f4e003 100644 --- a/datasets/GM0450_uitgeest/graph_values.yml +++ b/datasets/GM0450_uitgeest/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 875.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15487913761110192 - :network_gas: 0.14816474313893968 - :ambient_heat: 0.6969561192499586 + :electricity: 0.1874455345037983 + :network_gas: 0.15649385123612258 + :ambient_heat: 0.6560606142600791 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5720.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 124.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21551184053139694 - :network_gas: 0.1379526378744101 - :ambient_heat: 0.646535521594193 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0451_uithoorn/GM0451_uithoorn.derived.ad b/datasets/GM0451_uithoorn/GM0451_uithoorn.derived.ad index 219bee6766..cf6c8145b5 100644 --- a/datasets/GM0451_uithoorn/GM0451_uithoorn.derived.ad +++ b/datasets/GM0451_uithoorn/GM0451_uithoorn.derived.ad @@ -1,6 +1,6 @@ - area = GM0451_uithoorn -- id = 128781 -- parent_id = 128781 +- id = 130238 +- parent_id = 130238 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0451_uithoorn/emissions.csv b/datasets/GM0451_uithoorn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0451_uithoorn/emissions.csv +++ b/datasets/GM0451_uithoorn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0451_uithoorn/graph_values.yml b/datasets/GM0451_uithoorn/graph_values.yml index be176e4ed0..c221ec5976 100644 --- a/datasets/GM0451_uithoorn/graph_values.yml +++ b/datasets/GM0451_uithoorn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2155.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15570444004488723 - :network_gas: 0.14362557975312015 - :ambient_heat: 0.7006699802019926 + :electricity: 0.1885008390827593 + :network_gas: 0.15174497363000253 + :ambient_heat: 0.6597541872872381 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13250.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 82.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21658069112036177 - :network_gas: 0.13367723551855054 - :ambient_heat: 0.6497420733610877 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0453_velsen/GM0453_velsen.derived.ad b/datasets/GM0453_velsen/GM0453_velsen.derived.ad index 5c9cc6b977..ead37a62c5 100644 --- a/datasets/GM0453_velsen/GM0453_velsen.derived.ad +++ b/datasets/GM0453_velsen/GM0453_velsen.derived.ad @@ -1,6 +1,6 @@ - area = GM0453_velsen -- id = 128792 -- parent_id = 128792 +- id = 130249 +- parent_id = 130249 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0453_velsen/emissions.csv b/datasets/GM0453_velsen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0453_velsen/emissions.csv +++ b/datasets/GM0453_velsen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0453_velsen/graph_values.yml b/datasets/GM0453_velsen/graph_values.yml index eb1bf276b9..abf479ecd6 100644 --- a/datasets/GM0453_velsen/graph_values.yml +++ b/datasets/GM0453_velsen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6907.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1513438864064553 - :network_gas: 0.16760862476449587 - :ambient_heat: 0.6810474888290489 + :electricity: 0.18293219555894652 + :network_gas: 0.17680390642903934 + :ambient_heat: 0.640263898012014 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 31435.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4067.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21092443195910882 - :network_gas: 0.15630227216356238 - :ambient_heat: 0.6327732958773287 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0473_zandvoort/GM0473_zandvoort.derived.ad b/datasets/GM0473_zandvoort/GM0473_zandvoort.derived.ad index 1d5e3c1956..63d645283a 100644 --- a/datasets/GM0473_zandvoort/GM0473_zandvoort.derived.ad +++ b/datasets/GM0473_zandvoort/GM0473_zandvoort.derived.ad @@ -1,6 +1,6 @@ - area = GM0473_zandvoort -- id = 128825 -- parent_id = 128825 +- id = 130282 +- parent_id = 130282 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0473_zandvoort/emissions.csv b/datasets/GM0473_zandvoort/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0473_zandvoort/emissions.csv +++ b/datasets/GM0473_zandvoort/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0473_zandvoort/graph_values.yml b/datasets/GM0473_zandvoort/graph_values.yml index 1bec5e45b5..c5490b3533 100644 --- a/datasets/GM0473_zandvoort/graph_values.yml +++ b/datasets/GM0473_zandvoort/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1395.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1501576367064158 - :network_gas: 0.17413299811471322 - :ambient_heat: 0.675709365178871 + :electricity: 0.18142034048229608 + :network_gas: 0.18360726430347665 + :ambient_heat: 0.6349723952142272 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9695.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 723.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20938189088374 - :network_gas: 0.16247243646503776 - :ambient_heat: 0.6281456726512222 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0479_zaanstad/GM0479_zaanstad.derived.ad b/datasets/GM0479_zaanstad/GM0479_zaanstad.derived.ad index 0bbde96e09..258cc5e60c 100644 --- a/datasets/GM0479_zaanstad/GM0479_zaanstad.derived.ad +++ b/datasets/GM0479_zaanstad/GM0479_zaanstad.derived.ad @@ -1,6 +1,6 @@ - area = GM0479_zaanstad -- id = 128823 -- parent_id = 128823 +- id = 130280 +- parent_id = 130280 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0479_zaanstad/emissions.csv b/datasets/GM0479_zaanstad/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0479_zaanstad/emissions.csv +++ b/datasets/GM0479_zaanstad/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0479_zaanstad/graph_values.yml b/datasets/GM0479_zaanstad/graph_values.yml index 20096bbe64..20bf906b6c 100644 --- a/datasets/GM0479_zaanstad/graph_values.yml +++ b/datasets/GM0479_zaanstad/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 14450.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15363452729551139 - :network_gas: 0.15501009987468747 - :ambient_heat: 0.6913553728298012 + :electricity: 0.18585526096445212 + :network_gas: 0.16365009271291167 + :ambient_heat: 0.6504946463226361 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 69079.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4437.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.213898457970992 - :network_gas: 0.14440616811602966 - :ambient_heat: 0.6416953739129783 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0482_alblasserdam/GM0482_alblasserdam.derived.ad b/datasets/GM0482_alblasserdam/GM0482_alblasserdam.derived.ad index bbfec604ea..23435ac716 100644 --- a/datasets/GM0482_alblasserdam/GM0482_alblasserdam.derived.ad +++ b/datasets/GM0482_alblasserdam/GM0482_alblasserdam.derived.ad @@ -1,6 +1,6 @@ - area = GM0482_alblasserdam -- id = 128517 -- parent_id = 128517 +- id = 129974 +- parent_id = 129974 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0482_alblasserdam/emissions.csv b/datasets/GM0482_alblasserdam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0482_alblasserdam/emissions.csv +++ b/datasets/GM0482_alblasserdam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0482_alblasserdam/graph_values.yml b/datasets/GM0482_alblasserdam/graph_values.yml index d2f411d7bb..cf2bcfb8c4 100644 --- a/datasets/GM0482_alblasserdam/graph_values.yml +++ b/datasets/GM0482_alblasserdam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1419.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15624266086139704 - :network_gas: 0.14066536526231627 - :ambient_heat: 0.7030919738762867 + :electricity: 0.18918939652369854 + :network_gas: 0.14864646057794806 + :ambient_heat: 0.6621641428983535 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8406.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 245.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21727731910890316 - :network_gas: 0.13089072356438505 - :ambient_heat: 0.6518319573267118 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0484_alphen_aan_den_rijn/GM0484_alphen_aan_den_rijn.derived.ad b/datasets/GM0484_alphen_aan_den_rijn/GM0484_alphen_aan_den_rijn.derived.ad index f243b75418..7e6de9d5da 100644 --- a/datasets/GM0484_alphen_aan_den_rijn/GM0484_alphen_aan_den_rijn.derived.ad +++ b/datasets/GM0484_alphen_aan_den_rijn/GM0484_alphen_aan_den_rijn.derived.ad @@ -1,6 +1,6 @@ - area = GM0484_alphen_aan_den_rijn -- id = 128522 -- parent_id = 128522 +- id = 129979 +- parent_id = 129979 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0484_alphen_aan_den_rijn/emissions.csv b/datasets/GM0484_alphen_aan_den_rijn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0484_alphen_aan_den_rijn/emissions.csv +++ b/datasets/GM0484_alphen_aan_den_rijn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0484_alphen_aan_den_rijn/graph_values.yml b/datasets/GM0484_alphen_aan_den_rijn/graph_values.yml index a77c8bf2e1..341fc08839 100644 --- a/datasets/GM0484_alphen_aan_den_rijn/graph_values.yml +++ b/datasets/GM0484_alphen_aan_den_rijn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 10512.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15618748365509005 - :network_gas: 0.14096883989700468 - :ambient_heat: 0.7028436764479052 + :electricity: 0.18911879475749588 + :network_gas: 0.14896416899422565 + :ambient_heat: 0.6619170362482785 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 48847.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1649.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21720591769311767 - :network_gas: 0.13117632922752692 - :ambient_heat: 0.6516177530793554 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0489_barendrecht/GM0489_barendrecht.derived.ad b/datasets/GM0489_barendrecht/GM0489_barendrecht.derived.ad index 5c0fc66a58..a588c000eb 100644 --- a/datasets/GM0489_barendrecht/GM0489_barendrecht.derived.ad +++ b/datasets/GM0489_barendrecht/GM0489_barendrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0489_barendrecht -- id = 128534 -- parent_id = 128534 +- id = 129991 +- parent_id = 129991 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0489_barendrecht/emissions.csv b/datasets/GM0489_barendrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0489_barendrecht/emissions.csv +++ b/datasets/GM0489_barendrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0489_barendrecht/graph_values.yml b/datasets/GM0489_barendrecht/graph_values.yml index d94f593e14..aa5594d7e2 100644 --- a/datasets/GM0489_barendrecht/graph_values.yml +++ b/datasets/GM0489_barendrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4769.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1589768348148365 - :network_gas: 0.12562740851839937 - :ambient_heat: 0.7153957566667641 + :electricity: 0.19269144475566877 + :network_gas: 0.1328872203018096 + :ambient_heat: 0.6744213349425217 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19420.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 151.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2208110608806525 - :network_gas: 0.11675575647738755 - :ambient_heat: 0.6624331826419599 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0498_drechterland/GM0498_drechterland.derived.ad b/datasets/GM0498_drechterland/GM0498_drechterland.derived.ad index b5ea47f7aa..1ee22cff0e 100644 --- a/datasets/GM0498_drechterland/GM0498_drechterland.derived.ad +++ b/datasets/GM0498_drechterland/GM0498_drechterland.derived.ad @@ -1,6 +1,6 @@ - area = GM0498_drechterland -- id = 128586 -- parent_id = 128586 +- id = 130043 +- parent_id = 130043 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0498_drechterland/emissions.csv b/datasets/GM0498_drechterland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0498_drechterland/emissions.csv +++ b/datasets/GM0498_drechterland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0498_drechterland/graph_values.yml b/datasets/GM0498_drechterland/graph_values.yml index 623bb713f1..51fbf3bec5 100644 --- a/datasets/GM0498_drechterland/graph_values.yml +++ b/datasets/GM0498_drechterland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 879.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15596350188725538 - :network_gas: 0.14220073962009533 - :ambient_heat: 0.7018357584926492 + :electricity: 0.1888322288628828 + :network_gas: 0.1502537174210368 + :ambient_heat: 0.6609140537160804 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8399.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2169160407272426 - :network_gas: 0.13233583709102725 - :ambient_heat: 0.6507481221817302 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0502_capelle_aan_den_ijssel/GM0502_capelle_aan_den_ijssel.derived.ad b/datasets/GM0502_capelle_aan_den_ijssel/GM0502_capelle_aan_den_ijssel.derived.ad index bec61986c4..716ab173e9 100644 --- a/datasets/GM0502_capelle_aan_den_ijssel/GM0502_capelle_aan_den_ijssel.derived.ad +++ b/datasets/GM0502_capelle_aan_den_ijssel/GM0502_capelle_aan_den_ijssel.derived.ad @@ -1,6 +1,6 @@ - area = GM0502_capelle_aan_den_ijssel -- id = 128564 -- parent_id = 128564 +- id = 130021 +- parent_id = 130021 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0502_capelle_aan_den_ijssel/emissions.csv b/datasets/GM0502_capelle_aan_den_ijssel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0502_capelle_aan_den_ijssel/emissions.csv +++ b/datasets/GM0502_capelle_aan_den_ijssel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0502_capelle_aan_den_ijssel/graph_values.yml b/datasets/GM0502_capelle_aan_den_ijssel/graph_values.yml index e305868ebc..51f68421c3 100644 --- a/datasets/GM0502_capelle_aan_den_ijssel/graph_values.yml +++ b/datasets/GM0502_capelle_aan_den_ijssel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8475.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16144617410548912 - :network_gas: 0.1120460424198099 - :ambient_heat: 0.726507783474701 + :electricity: 0.19586026914415158 + :network_gas: 0.11862748953194141 + :ambient_heat: 0.685512241323907 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 31546.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 271.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2239951523071619 - :network_gas: 0.10401939077134999 - :ambient_heat: 0.6719854569214881 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0503_delft/GM0503_delft.derived.ad b/datasets/GM0503_delft/GM0503_delft.derived.ad index 3f96cb1d16..0b698fb15c 100644 --- a/datasets/GM0503_delft/GM0503_delft.derived.ad +++ b/datasets/GM0503_delft/GM0503_delft.derived.ad @@ -1,6 +1,6 @@ - area = GM0503_delft -- id = 128575 -- parent_id = 128575 +- id = 130032 +- parent_id = 130032 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0503_delft/emissions.csv b/datasets/GM0503_delft/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0503_delft/emissions.csv +++ b/datasets/GM0503_delft/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0503_delft/graph_values.yml b/datasets/GM0503_delft/graph_values.yml index 6e6b8c662a..7445369916 100644 --- a/datasets/GM0503_delft/graph_values.yml +++ b/datasets/GM0503_delft/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 20472.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15598159475557488 - :network_gas: 0.14210122884433807 - :ambient_heat: 0.701917176400087 + :electricity: 0.18885537544053638 + :network_gas: 0.15014955766804358 + :ambient_heat: 0.6609950668914201 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 51465.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5113.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2169394586425922 - :network_gas: 0.13224216542962877 - :ambient_heat: 0.650818375927779 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0505_dordrecht/GM0505_dordrecht.derived.ad b/datasets/GM0505_dordrecht/GM0505_dordrecht.derived.ad index df1af9139e..47ba6ad9fc 100644 --- a/datasets/GM0505_dordrecht/GM0505_dordrecht.derived.ad +++ b/datasets/GM0505_dordrecht/GM0505_dordrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0505_dordrecht -- id = 128585 -- parent_id = 128585 +- id = 130042 +- parent_id = 130042 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0505_dordrecht/emissions.csv b/datasets/GM0505_dordrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0505_dordrecht/emissions.csv +++ b/datasets/GM0505_dordrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0505_dordrecht/graph_values.yml b/datasets/GM0505_dordrecht/graph_values.yml index 362f40f265..fedd83b012 100644 --- a/datasets/GM0505_dordrecht/graph_values.yml +++ b/datasets/GM0505_dordrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 14753.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1543326749493162 - :network_gas: 0.15117028777876093 - :ambient_heat: 0.6944970372719229 + :electricity: 0.18674712692322315 + :network_gas: 0.15963668998188377 + :ambient_heat: 0.6536161830948931 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 55783.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 6233.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21480368366376212 - :network_gas: 0.14078526534494923 - :ambient_heat: 0.6444110509912886 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0512_gorinchem/GM0512_gorinchem.derived.ad b/datasets/GM0512_gorinchem/GM0512_gorinchem.derived.ad index 5047c1cd8a..7aced8983e 100644 --- a/datasets/GM0512_gorinchem/GM0512_gorinchem.derived.ad +++ b/datasets/GM0512_gorinchem/GM0512_gorinchem.derived.ad @@ -1,6 +1,6 @@ - area = GM0512_gorinchem -- id = 128614 -- parent_id = 128614 +- id = 130071 +- parent_id = 130071 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0512_gorinchem/emissions.csv b/datasets/GM0512_gorinchem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0512_gorinchem/emissions.csv +++ b/datasets/GM0512_gorinchem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0512_gorinchem/graph_values.yml b/datasets/GM0512_gorinchem/graph_values.yml index 2c9add2f92..dfb3aea4cf 100644 --- a/datasets/GM0512_gorinchem/graph_values.yml +++ b/datasets/GM0512_gorinchem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7948.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1568347137427353 - :network_gas: 0.1374090744149559 - :ambient_heat: 0.7057562118423089 + :electricity: 0.18994713343208597 + :network_gas: 0.14523663946344642 + :ambient_heat: 0.6648162271044677 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17273.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 805.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21804323770817235 - :network_gas: 0.12782704916730814 - :ambient_heat: 0.6541297131245194 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0513_gouda/GM0513_gouda.derived.ad b/datasets/GM0513_gouda/GM0513_gouda.derived.ad index 139cd3b2c8..f49a9543fc 100644 --- a/datasets/GM0513_gouda/GM0513_gouda.derived.ad +++ b/datasets/GM0513_gouda/GM0513_gouda.derived.ad @@ -1,6 +1,6 @@ - area = GM0513_gouda -- id = 128615 -- parent_id = 128615 +- id = 130072 +- parent_id = 130072 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0513_gouda/emissions.csv b/datasets/GM0513_gouda/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0513_gouda/emissions.csv +++ b/datasets/GM0513_gouda/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0513_gouda/graph_values.yml b/datasets/GM0513_gouda/graph_values.yml index 13e777d42f..822166d1da 100644 --- a/datasets/GM0513_gouda/graph_values.yml +++ b/datasets/GM0513_gouda/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 9994.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1541145142357247 - :network_gas: 0.1523701717035141 - :ambient_heat: 0.6935153140607613 + :electricity: 0.1864683835930438 + :network_gas: 0.16089103681684877 + :ambient_heat: 0.6526405795901074 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 33708.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 4726.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21452087459839717 - :network_gas: 0.1419165016064089 - :ambient_heat: 0.6435626237951938 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0518_s_gravenhage/GM0518_s_gravenhage.derived.ad b/datasets/GM0518_s_gravenhage/GM0518_s_gravenhage.derived.ad index 3f96b5c4e8..7301a600c3 100644 --- a/datasets/GM0518_s_gravenhage/GM0518_s_gravenhage.derived.ad +++ b/datasets/GM0518_s_gravenhage/GM0518_s_gravenhage.derived.ad @@ -1,6 +1,6 @@ - area = GM0518_s_gravenhage -- id = 128576 -- parent_id = 128576 +- id = 130033 +- parent_id = 130033 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0518_s_gravenhage/emissions.csv b/datasets/GM0518_s_gravenhage/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0518_s_gravenhage/emissions.csv +++ b/datasets/GM0518_s_gravenhage/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0518_s_gravenhage/graph_values.yml b/datasets/GM0518_s_gravenhage/graph_values.yml index 2c65bdd249..7799969de0 100644 --- a/datasets/GM0518_s_gravenhage/graph_values.yml +++ b/datasets/GM0518_s_gravenhage/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 77160.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15219394164634026 - :network_gas: 0.16293332094512852 - :ambient_heat: 0.6848727374085312 + :electricity: 0.1840163764591791 + :network_gas: 0.17192508518563449 + :ambient_heat: 0.6440585383551864 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 265826.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 16816.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21202879932978472 - :network_gas: 0.15188480268085894 - :ambient_heat: 0.6360863979893564 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0523_hardinxveld_giessendam/GM0523_hardinxveld_giessendam.derived.ad b/datasets/GM0523_hardinxveld_giessendam/GM0523_hardinxveld_giessendam.derived.ad index 29caca1123..7de55d4549 100644 --- a/datasets/GM0523_hardinxveld_giessendam/GM0523_hardinxveld_giessendam.derived.ad +++ b/datasets/GM0523_hardinxveld_giessendam/GM0523_hardinxveld_giessendam.derived.ad @@ -1,6 +1,6 @@ - area = GM0523_hardinxveld_giessendam -- id = 128624 -- parent_id = 128624 +- id = 130081 +- parent_id = 130081 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0523_hardinxveld_giessendam/emissions.csv b/datasets/GM0523_hardinxveld_giessendam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0523_hardinxveld_giessendam/emissions.csv +++ b/datasets/GM0523_hardinxveld_giessendam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0523_hardinxveld_giessendam/graph_values.yml b/datasets/GM0523_hardinxveld_giessendam/graph_values.yml index 1c746ae119..f41306b474 100644 --- a/datasets/GM0523_hardinxveld_giessendam/graph_values.yml +++ b/datasets/GM0523_hardinxveld_giessendam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1962.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556523405304498 - :network_gas: 0.1439121270825262 - :ambient_heat: 0.700435532387024 + :electricity: 0.18843420134098227 + :network_gas: 0.15204484391006812 + :ambient_heat: 0.6595209547489497 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7508.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 129.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21651324015953852 - :network_gas: 0.13394703936184374 - :ambient_heat: 0.6495397204786179 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0531_hendrik_ido_ambacht/GM0531_hendrik_ido_ambacht.derived.ad b/datasets/GM0531_hendrik_ido_ambacht/GM0531_hendrik_ido_ambacht.derived.ad index 2e4fc94af9..f8b43eec85 100644 --- a/datasets/GM0531_hendrik_ido_ambacht/GM0531_hendrik_ido_ambacht.derived.ad +++ b/datasets/GM0531_hendrik_ido_ambacht/GM0531_hendrik_ido_ambacht.derived.ad @@ -1,6 +1,6 @@ - area = GM0531_hendrik_ido_ambacht -- id = 128636 -- parent_id = 128636 +- id = 130093 +- parent_id = 130093 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0531_hendrik_ido_ambacht/emissions.csv b/datasets/GM0531_hendrik_ido_ambacht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0531_hendrik_ido_ambacht/emissions.csv +++ b/datasets/GM0531_hendrik_ido_ambacht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0531_hendrik_ido_ambacht/graph_values.yml b/datasets/GM0531_hendrik_ido_ambacht/graph_values.yml index b7907bd465..c54f340ca8 100644 --- a/datasets/GM0531_hendrik_ido_ambacht/graph_values.yml +++ b/datasets/GM0531_hendrik_ido_ambacht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1615.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15858780501097333 - :network_gas: 0.12776707243964652 - :ambient_heat: 0.71364512254938 + :electricity: 0.192192733848696 + :network_gas: 0.1351314226915902 + :ambient_heat: 0.6726758434597138 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12330.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 78.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2203087890633568 - :network_gas: 0.11876484374657048 - :ambient_heat: 0.6609263671900727 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0532_stede_broec/GM0532_stede_broec.derived.ad b/datasets/GM0532_stede_broec/GM0532_stede_broec.derived.ad index 2d45d3cdef..d4f6cc19f7 100644 --- a/datasets/GM0532_stede_broec/GM0532_stede_broec.derived.ad +++ b/datasets/GM0532_stede_broec/GM0532_stede_broec.derived.ad @@ -1,6 +1,6 @@ - area = GM0532_stede_broec -- id = 128763 -- parent_id = 128763 +- id = 130220 +- parent_id = 130220 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0532_stede_broec/emissions.csv b/datasets/GM0532_stede_broec/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0532_stede_broec/emissions.csv +++ b/datasets/GM0532_stede_broec/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0532_stede_broec/graph_values.yml b/datasets/GM0532_stede_broec/graph_values.yml index 02804cd3ce..1b49b50003 100644 --- a/datasets/GM0532_stede_broec/graph_values.yml +++ b/datasets/GM0532_stede_broec/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1870.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1548214547602405 - :network_gas: 0.14848199881867713 - :ambient_heat: 0.6966965464210824 + :electricity: 0.187371799754702 + :network_gas: 0.1568256580962057 + :ambient_heat: 0.6558025421490924 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9251.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 38.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21543710601719193 - :network_gas: 0.13825157593123003 - :ambient_heat: 0.646311318051578 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0534_hillegom/GM0534_hillegom.derived.ad b/datasets/GM0534_hillegom/GM0534_hillegom.derived.ad index a0101844c0..b9508f9922 100644 --- a/datasets/GM0534_hillegom/GM0534_hillegom.derived.ad +++ b/datasets/GM0534_hillegom/GM0534_hillegom.derived.ad @@ -1,6 +1,6 @@ - area = GM0534_hillegom -- id = 128640 -- parent_id = 128640 +- id = 130097 +- parent_id = 130097 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0534_hillegom/emissions.csv b/datasets/GM0534_hillegom/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0534_hillegom/emissions.csv +++ b/datasets/GM0534_hillegom/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0534_hillegom/graph_values.yml b/datasets/GM0534_hillegom/graph_values.yml index dc883d09b5..bbca9ea2e5 100644 --- a/datasets/GM0534_hillegom/graph_values.yml +++ b/datasets/GM0534_hillegom/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1472.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15495521779320137 - :network_gas: 0.1477463021373925 - :ambient_heat: 0.6972984800694062 + :electricity: 0.18754279088798045 + :network_gas: 0.15605619686211278 + :ambient_heat: 0.6564010122499069 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9858.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 832.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2156104049559558 - :network_gas: 0.13755838017617456 - :ambient_heat: 0.6468312148678697 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0537_katwijk/GM0537_katwijk.derived.ad b/datasets/GM0537_katwijk/GM0537_katwijk.derived.ad index 244e693dbf..2eced8c829 100644 --- a/datasets/GM0537_katwijk/GM0537_katwijk.derived.ad +++ b/datasets/GM0537_katwijk/GM0537_katwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0537_katwijk -- id = 128655 -- parent_id = 128655 +- id = 130112 +- parent_id = 130112 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0537_katwijk/emissions.csv b/datasets/GM0537_katwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0537_katwijk/emissions.csv +++ b/datasets/GM0537_katwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0537_katwijk/graph_values.yml b/datasets/GM0537_katwijk/graph_values.yml index c4f32824d3..f0647fa96f 100644 --- a/datasets/GM0537_katwijk/graph_values.yml +++ b/datasets/GM0537_katwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4824.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15602664665216393 - :network_gas: 0.14185344341309833 - :ambient_heat: 0.7021199099347377 + :electricity: 0.188913012577688 + :network_gas: 0.14989019016850172 + :ambient_heat: 0.6611967972538103 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27160.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1783.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2169977684611615 - :network_gas: 0.13200892615535167 - :ambient_heat: 0.6509933053834868 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0542_krimpen_aan_den_ijssel/GM0542_krimpen_aan_den_ijssel.derived.ad b/datasets/GM0542_krimpen_aan_den_ijssel/GM0542_krimpen_aan_den_ijssel.derived.ad index bdbd8e0a37..446d34b238 100644 --- a/datasets/GM0542_krimpen_aan_den_ijssel/GM0542_krimpen_aan_den_ijssel.derived.ad +++ b/datasets/GM0542_krimpen_aan_den_ijssel/GM0542_krimpen_aan_den_ijssel.derived.ad @@ -1,6 +1,6 @@ - area = GM0542_krimpen_aan_den_ijssel -- id = 128658 -- parent_id = 128658 +- id = 130115 +- parent_id = 130115 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0542_krimpen_aan_den_ijssel/emissions.csv b/datasets/GM0542_krimpen_aan_den_ijssel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0542_krimpen_aan_den_ijssel/emissions.csv +++ b/datasets/GM0542_krimpen_aan_den_ijssel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0542_krimpen_aan_den_ijssel/graph_values.yml b/datasets/GM0542_krimpen_aan_den_ijssel/graph_values.yml index 69c8fd7efb..3329245162 100644 --- a/datasets/GM0542_krimpen_aan_den_ijssel/graph_values.yml +++ b/datasets/GM0542_krimpen_aan_den_ijssel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1847.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15588337557136975 - :network_gas: 0.14264143435746643 - :ambient_heat: 0.7014751900711639 + :electricity: 0.18872972527870868 + :network_gas: 0.15071498422982005 + :ambient_heat: 0.6605552904914713 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12643.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 113.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2168123273066475 - :network_gas: 0.13275069077340756 - :ambient_heat: 0.6504369819199449 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0546_leiden/GM0546_leiden.derived.ad b/datasets/GM0546_leiden/GM0546_leiden.derived.ad index 96f1f0e462..675c182b1d 100644 --- a/datasets/GM0546_leiden/GM0546_leiden.derived.ad +++ b/datasets/GM0546_leiden/GM0546_leiden.derived.ad @@ -1,6 +1,6 @@ - area = GM0546_leiden -- id = 128666 -- parent_id = 128666 +- id = 130123 +- parent_id = 130123 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0546_leiden/emissions.csv b/datasets/GM0546_leiden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0546_leiden/emissions.csv +++ b/datasets/GM0546_leiden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0546_leiden/graph_values.yml b/datasets/GM0546_leiden/graph_values.yml index fc40fe1968..382fb9c25a 100644 --- a/datasets/GM0546_leiden/graph_values.yml +++ b/datasets/GM0546_leiden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 21275.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15625314653285075 - :network_gas: 0.140607694069321 - :ambient_heat: 0.7031391593978283 + :electricity: 0.18920281374118048 + :network_gas: 0.14858608301027074 + :ambient_heat: 0.6622111032485488 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 60499.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 9342.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21729088757264192 - :network_gas: 0.13083644970942987 - :ambient_heat: 0.6518726627179282 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0547_leiderdorp/GM0547_leiderdorp.derived.ad b/datasets/GM0547_leiderdorp/GM0547_leiderdorp.derived.ad index bd2e2122c1..87dac08a09 100644 --- a/datasets/GM0547_leiderdorp/GM0547_leiderdorp.derived.ad +++ b/datasets/GM0547_leiderdorp/GM0547_leiderdorp.derived.ad @@ -1,6 +1,6 @@ - area = GM0547_leiderdorp -- id = 128667 -- parent_id = 128667 +- id = 130124 +- parent_id = 130124 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0547_leiderdorp/emissions.csv b/datasets/GM0547_leiderdorp/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0547_leiderdorp/emissions.csv +++ b/datasets/GM0547_leiderdorp/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0547_leiderdorp/graph_values.yml b/datasets/GM0547_leiderdorp/graph_values.yml index 0f4fb1bf62..f984ce6550 100644 --- a/datasets/GM0547_leiderdorp/graph_values.yml +++ b/datasets/GM0547_leiderdorp/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3246.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15629330004313136 - :network_gas: 0.14038684976277754 - :ambient_heat: 0.7033198501940912 + :electricity: 0.18925419416920566 + :network_gas: 0.1483548707433044 + :ambient_heat: 0.66239093508749 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12376.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 379.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2173428450634538 - :network_gas: 0.1306286197461824 - :ambient_heat: 0.6520285351903637 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0553_lisse/GM0553_lisse.derived.ad b/datasets/GM0553_lisse/GM0553_lisse.derived.ad index 7f7c51cfd6..7765e2ed8a 100644 --- a/datasets/GM0553_lisse/GM0553_lisse.derived.ad +++ b/datasets/GM0553_lisse/GM0553_lisse.derived.ad @@ -1,6 +1,6 @@ - area = GM0553_lisse -- id = 128673 -- parent_id = 128673 +- id = 130130 +- parent_id = 130130 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0553_lisse/emissions.csv b/datasets/GM0553_lisse/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0553_lisse/emissions.csv +++ b/datasets/GM0553_lisse/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0553_lisse/graph_values.yml b/datasets/GM0553_lisse/graph_values.yml index 2ae345046b..89526890d6 100644 --- a/datasets/GM0553_lisse/graph_values.yml +++ b/datasets/GM0553_lisse/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2689.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15589554142907805 - :network_gas: 0.14257452214007071 - :ambient_heat: 0.7015299364308512 + :electricity: 0.18874528837097912 + :network_gas: 0.1506449502113589 + :ambient_heat: 0.660609761417662 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10408.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 487.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2168280749526796 - :network_gas: 0.13268770018927925 - :ambient_heat: 0.6504842248580411 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0556_maassluis/GM0556_maassluis.derived.ad b/datasets/GM0556_maassluis/GM0556_maassluis.derived.ad index 1d8f596d10..5629576ae6 100644 --- a/datasets/GM0556_maassluis/GM0556_maassluis.derived.ad +++ b/datasets/GM0556_maassluis/GM0556_maassluis.derived.ad @@ -1,6 +1,6 @@ - area = GM0556_maassluis -- id = 128680 -- parent_id = 128680 +- id = 130137 +- parent_id = 130137 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0556_maassluis/emissions.csv b/datasets/GM0556_maassluis/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0556_maassluis/emissions.csv +++ b/datasets/GM0556_maassluis/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0556_maassluis/graph_values.yml b/datasets/GM0556_maassluis/graph_values.yml index 741bc25f5a..d7ddece9c9 100644 --- a/datasets/GM0556_maassluis/graph_values.yml +++ b/datasets/GM0556_maassluis/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2200.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15680049187258802 - :network_gas: 0.13759729470076587 - :ambient_heat: 0.7056022134266461 + :electricity: 0.18990332581137614 + :network_gas: 0.14543377404725624 + :ambient_heat: 0.6646629001413676 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15387.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 792.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21799897702395526 - :network_gas: 0.12800409190417664 - :ambient_heat: 0.6539969310718682 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0569_nieuwkoop/GM0569_nieuwkoop.derived.ad b/datasets/GM0569_nieuwkoop/GM0569_nieuwkoop.derived.ad index 4215ef26fb..2d8ed64292 100644 --- a/datasets/GM0569_nieuwkoop/GM0569_nieuwkoop.derived.ad +++ b/datasets/GM0569_nieuwkoop/GM0569_nieuwkoop.derived.ad @@ -1,6 +1,6 @@ - area = GM0569_nieuwkoop -- id = 128695 -- parent_id = 128695 +- id = 130152 +- parent_id = 130152 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0569_nieuwkoop/emissions.csv b/datasets/GM0569_nieuwkoop/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0569_nieuwkoop/emissions.csv +++ b/datasets/GM0569_nieuwkoop/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0569_nieuwkoop/graph_values.yml b/datasets/GM0569_nieuwkoop/graph_values.yml index ce59cedbce..a79c75554d 100644 --- a/datasets/GM0569_nieuwkoop/graph_values.yml +++ b/datasets/GM0569_nieuwkoop/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1932.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15692322981290432 - :network_gas: 0.13692223602902612 - :ambient_heat: 0.7061545341580695 + :electricity: 0.19006044843467293 + :network_gas: 0.14472672120008334 + :ambient_heat: 0.6652128303652437 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11633.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 26.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21815771327645647 - :network_gas: 0.12736914689417178 - :ambient_heat: 0.6544731398293717 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0575_noordwijk/GM0575_noordwijk.derived.ad b/datasets/GM0575_noordwijk/GM0575_noordwijk.derived.ad index 8b6cc7730c..740f28421e 100644 --- a/datasets/GM0575_noordwijk/GM0575_noordwijk.derived.ad +++ b/datasets/GM0575_noordwijk/GM0575_noordwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0575_noordwijk -- id = 128702 -- parent_id = 128702 +- id = 130159 +- parent_id = 130159 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0575_noordwijk/emissions.csv b/datasets/GM0575_noordwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0575_noordwijk/emissions.csv +++ b/datasets/GM0575_noordwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0575_noordwijk/graph_values.yml b/datasets/GM0575_noordwijk/graph_values.yml index e0ef2aad8b..42a4641409 100644 --- a/datasets/GM0575_noordwijk/graph_values.yml +++ b/datasets/GM0575_noordwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5595.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15426484633454238 - :network_gas: 0.15154334516001683 - :ambient_heat: 0.6941918085054408 + :electricity: 0.18666045776512286 + :network_gas: 0.16002670176829042 + :ambient_heat: 0.6533128404665868 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20093.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 864.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21471576103479315 - :network_gas: 0.14113695586082528 - :ambient_heat: 0.6441472831043816 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0579_oegstgeest/GM0579_oegstgeest.derived.ad b/datasets/GM0579_oegstgeest/GM0579_oegstgeest.derived.ad index d5b6964ae2..2218a67f8a 100644 --- a/datasets/GM0579_oegstgeest/GM0579_oegstgeest.derived.ad +++ b/datasets/GM0579_oegstgeest/GM0579_oegstgeest.derived.ad @@ -1,6 +1,6 @@ - area = GM0579_oegstgeest -- id = 128705 -- parent_id = 128705 +- id = 130162 +- parent_id = 130162 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0579_oegstgeest/emissions.csv b/datasets/GM0579_oegstgeest/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0579_oegstgeest/emissions.csv +++ b/datasets/GM0579_oegstgeest/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0579_oegstgeest/graph_values.yml b/datasets/GM0579_oegstgeest/graph_values.yml index f9013934cd..65ebef50aa 100644 --- a/datasets/GM0579_oegstgeest/graph_values.yml +++ b/datasets/GM0579_oegstgeest/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2024.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1552455675865343 - :network_gas: 0.1461493782740614 - :ambient_heat: 0.6986050541394042 + :electricity: 0.18791400618310272 + :network_gas: 0.15438572557145372 + :ambient_heat: 0.6577002682454435 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11008.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 700.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2159865015105192 - :network_gas: 0.13605399395792084 - :ambient_heat: 0.6479595045315599 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0589_oudewater/GM0589_oudewater.derived.ad b/datasets/GM0589_oudewater/GM0589_oudewater.derived.ad index 70e87893a0..3e12a1e912 100644 --- a/datasets/GM0589_oudewater/GM0589_oudewater.derived.ad +++ b/datasets/GM0589_oudewater/GM0589_oudewater.derived.ad @@ -1,6 +1,6 @@ - area = GM0589_oudewater -- id = 128722 -- parent_id = 128722 +- id = 130179 +- parent_id = 130179 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0589_oudewater/emissions.csv b/datasets/GM0589_oudewater/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0589_oudewater/emissions.csv +++ b/datasets/GM0589_oudewater/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0589_oudewater/graph_values.yml b/datasets/GM0589_oudewater/graph_values.yml index dc48da9f3a..fcf58a1d99 100644 --- a/datasets/GM0589_oudewater/graph_values.yml +++ b/datasets/GM0589_oudewater/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 670.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15458275482888156 - :network_gas: 0.14979484844115137 - :ambient_heat: 0.6956223967299671 + :electricity: 0.18706670758073307 + :network_gas: 0.15819857490301978 + :ambient_heat: 0.6547347175162472 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4315.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 304.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21512780305526238 - :network_gas: 0.13948878777894816 - :ambient_heat: 0.6453834091657895 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0590_papendrecht/GM0590_papendrecht.derived.ad b/datasets/GM0590_papendrecht/GM0590_papendrecht.derived.ad index d677b11518..50de125cb5 100644 --- a/datasets/GM0590_papendrecht/GM0590_papendrecht.derived.ad +++ b/datasets/GM0590_papendrecht/GM0590_papendrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0590_papendrecht -- id = 128724 -- parent_id = 128724 +- id = 130181 +- parent_id = 130181 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0590_papendrecht/emissions.csv b/datasets/GM0590_papendrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0590_papendrecht/emissions.csv +++ b/datasets/GM0590_papendrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0590_papendrecht/graph_values.yml b/datasets/GM0590_papendrecht/graph_values.yml index 4bc8b8ec53..5751a155c9 100644 --- a/datasets/GM0590_papendrecht/graph_values.yml +++ b/datasets/GM0590_papendrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2482.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15738135164694622 - :network_gas: 0.13440256594179587 - :ambient_heat: 0.708216082411258 + :electricity: 0.19064703554676138 + :network_gas: 0.14208707530431927 + :ambient_heat: 0.6672658891489194 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14474.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 112.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2187500465524956 - :network_gas: 0.12499981379001522 - :ambient_heat: 0.6562501396574891 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0597_ridderkerk/GM0597_ridderkerk.derived.ad b/datasets/GM0597_ridderkerk/GM0597_ridderkerk.derived.ad index 4a9d57312f..d9a1e4bfd1 100644 --- a/datasets/GM0597_ridderkerk/GM0597_ridderkerk.derived.ad +++ b/datasets/GM0597_ridderkerk/GM0597_ridderkerk.derived.ad @@ -1,6 +1,6 @@ - area = GM0597_ridderkerk -- id = 128737 -- parent_id = 128737 +- id = 130194 +- parent_id = 130194 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0597_ridderkerk/emissions.csv b/datasets/GM0597_ridderkerk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0597_ridderkerk/emissions.csv +++ b/datasets/GM0597_ridderkerk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0597_ridderkerk/graph_values.yml b/datasets/GM0597_ridderkerk/graph_values.yml index 180f9bf454..b0defd327b 100644 --- a/datasets/GM0597_ridderkerk/graph_values.yml +++ b/datasets/GM0597_ridderkerk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4254.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15699989317181878 - :network_gas: 0.13650058755499672 - :ambient_heat: 0.7064995192731846 + :electricity: 0.19015859592273313 + :network_gas: 0.14428505685271087 + :ambient_heat: 0.6655563472245559 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21285.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 656.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21825685275541565 - :network_gas: 0.12697258897833497 - :ambient_heat: 0.6547705582662493 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0599_rotterdam/GM0599_rotterdam.derived.ad b/datasets/GM0599_rotterdam/GM0599_rotterdam.derived.ad index 0954b3d096..0f6a249fbe 100644 --- a/datasets/GM0599_rotterdam/GM0599_rotterdam.derived.ad +++ b/datasets/GM0599_rotterdam/GM0599_rotterdam.derived.ad @@ -1,6 +1,6 @@ - area = GM0599_rotterdam -- id = 128743 -- parent_id = 128743 +- id = 130200 +- parent_id = 130200 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0599_rotterdam/emissions.csv b/datasets/GM0599_rotterdam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0599_rotterdam/emissions.csv +++ b/datasets/GM0599_rotterdam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0599_rotterdam/graph_values.yml b/datasets/GM0599_rotterdam/graph_values.yml index 8c232ec7a7..14e84dfbc0 100644 --- a/datasets/GM0599_rotterdam/graph_values.yml +++ b/datasets/GM0599_rotterdam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 111958.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15627857335777026 - :network_gas: 0.14046784653226377 - :ambient_heat: 0.7032535801099661 + :electricity: 0.18923534972998415 + :network_gas: 0.14843967084481344 + :ambient_heat: 0.6623249794252025 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 317566.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 14168.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2173237893704079 - :network_gas: 0.1307048425183662 - :ambient_heat: 0.651971368111226 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0603_rijswijk/GM0603_rijswijk.derived.ad b/datasets/GM0603_rijswijk/GM0603_rijswijk.derived.ad index 0b7351edb4..8697513b93 100644 --- a/datasets/GM0603_rijswijk/GM0603_rijswijk.derived.ad +++ b/datasets/GM0603_rijswijk/GM0603_rijswijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0603_rijswijk -- id = 128739 -- parent_id = 128739 +- id = 130196 +- parent_id = 130196 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0603_rijswijk/emissions.csv b/datasets/GM0603_rijswijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0603_rijswijk/emissions.csv +++ b/datasets/GM0603_rijswijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0603_rijswijk/graph_values.yml b/datasets/GM0603_rijswijk/graph_values.yml index 2a7c87f1ac..8490e67e88 100644 --- a/datasets/GM0603_rijswijk/graph_values.yml +++ b/datasets/GM0603_rijswijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 18055.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15424888366482484 - :network_gas: 0.1516311398434633 - :ambient_heat: 0.6941199764917118 + :electricity: 0.18664006181447354 + :network_gas: 0.16011848368151732 + :ambient_heat: 0.6532414545040092 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27201.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1518.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21469506870250646 - :network_gas: 0.1412197251899719 - :ambient_heat: 0.6440852061075216 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0606_schiedam/GM0606_schiedam.derived.ad b/datasets/GM0606_schiedam/GM0606_schiedam.derived.ad index fd249c2103..07c80805cd 100644 --- a/datasets/GM0606_schiedam/GM0606_schiedam.derived.ad +++ b/datasets/GM0606_schiedam/GM0606_schiedam.derived.ad @@ -1,6 +1,6 @@ - area = GM0606_schiedam -- id = 128748 -- parent_id = 128748 +- id = 130205 +- parent_id = 130205 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0606_schiedam/emissions.csv b/datasets/GM0606_schiedam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0606_schiedam/emissions.csv +++ b/datasets/GM0606_schiedam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0606_schiedam/graph_values.yml b/datasets/GM0606_schiedam/graph_values.yml index 4408a3b8bf..ba5142e97a 100644 --- a/datasets/GM0606_schiedam/graph_values.yml +++ b/datasets/GM0606_schiedam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8634.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15370657773935573 - :network_gas: 0.15461382243354344 - :ambient_heat: 0.6916795998271008 + :electricity: 0.185947282675267 + :network_gas: 0.16323599440378098 + :ambient_heat: 0.6508167229209519 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 37452.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3154.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21399190538787635 - :network_gas: 0.14403237844849234 - :ambient_heat: 0.6419757161636314 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0610_sliedrecht/GM0610_sliedrecht.derived.ad b/datasets/GM0610_sliedrecht/GM0610_sliedrecht.derived.ad index 45caf41444..e38c18ac65 100644 --- a/datasets/GM0610_sliedrecht/GM0610_sliedrecht.derived.ad +++ b/datasets/GM0610_sliedrecht/GM0610_sliedrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0610_sliedrecht -- id = 128755 -- parent_id = 128755 +- id = 130212 +- parent_id = 130212 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0610_sliedrecht/emissions.csv b/datasets/GM0610_sliedrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0610_sliedrecht/emissions.csv +++ b/datasets/GM0610_sliedrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0610_sliedrecht/graph_values.yml b/datasets/GM0610_sliedrecht/graph_values.yml index a71e6143d4..19f2a5b0c3 100644 --- a/datasets/GM0610_sliedrecht/graph_values.yml +++ b/datasets/GM0610_sliedrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3206.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15643281746201168 - :network_gas: 0.13961950395893563 - :ambient_heat: 0.7039476785790526 + :electricity: 0.18943273229437746 + :network_gas: 0.14755144799562528 + :ambient_heat: 0.6630158197099972 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11078.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 522.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2175233621777653 - :network_gas: 0.1299065512889365 - :ambient_heat: 0.6525700865332982 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0613_albrandswaard/GM0613_albrandswaard.derived.ad b/datasets/GM0613_albrandswaard/GM0613_albrandswaard.derived.ad index 669728cb15..ba6c83fafc 100644 --- a/datasets/GM0613_albrandswaard/GM0613_albrandswaard.derived.ad +++ b/datasets/GM0613_albrandswaard/GM0613_albrandswaard.derived.ad @@ -1,6 +1,6 @@ - area = GM0613_albrandswaard -- id = 128518 -- parent_id = 128518 +- id = 129975 +- parent_id = 129975 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0613_albrandswaard/emissions.csv b/datasets/GM0613_albrandswaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0613_albrandswaard/emissions.csv +++ b/datasets/GM0613_albrandswaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0613_albrandswaard/graph_values.yml b/datasets/GM0613_albrandswaard/graph_values.yml index 57817154df..cdbe19e59c 100644 --- a/datasets/GM0613_albrandswaard/graph_values.yml +++ b/datasets/GM0613_albrandswaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1574.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1570775142367521 - :network_gas: 0.13607367169786355 - :ambient_heat: 0.7068488140653844 + :electricity: 0.19025797507351236 + :network_gas: 0.14383785001493193 + :ambient_heat: 0.6659041749115556 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10558.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 55.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21835722383495257 - :network_gas: 0.1265711046601874 - :ambient_heat: 0.65507167150486 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0622_vlaardingen/GM0622_vlaardingen.derived.ad b/datasets/GM0622_vlaardingen/GM0622_vlaardingen.derived.ad index acde3c4440..c4f7348411 100644 --- a/datasets/GM0622_vlaardingen/GM0622_vlaardingen.derived.ad +++ b/datasets/GM0622_vlaardingen/GM0622_vlaardingen.derived.ad @@ -1,6 +1,6 @@ - area = GM0622_vlaardingen -- id = 128795 -- parent_id = 128795 +- id = 130252 +- parent_id = 130252 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0622_vlaardingen/emissions.csv b/datasets/GM0622_vlaardingen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0622_vlaardingen/emissions.csv +++ b/datasets/GM0622_vlaardingen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0622_vlaardingen/graph_values.yml b/datasets/GM0622_vlaardingen/graph_values.yml index 70bf741eb1..0d13bf51c2 100644 --- a/datasets/GM0622_vlaardingen/graph_values.yml +++ b/datasets/GM0622_vlaardingen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6581.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15341714749372018 - :network_gas: 0.15620568878453897 - :ambient_heat: 0.6903771637217408 + :electricity: 0.18557765599939302 + :network_gas: 0.16489931689728393 + :ambient_heat: 0.6495230271033229 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 35541.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2660.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2136164860912618 - :network_gas: 0.1455340556349505 - :ambient_heat: 0.6408494582737877 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0626_voorschoten/GM0626_voorschoten.derived.ad b/datasets/GM0626_voorschoten/GM0626_voorschoten.derived.ad index 40643589b2..78b197e881 100644 --- a/datasets/GM0626_voorschoten/GM0626_voorschoten.derived.ad +++ b/datasets/GM0626_voorschoten/GM0626_voorschoten.derived.ad @@ -1,6 +1,6 @@ - area = GM0626_voorschoten -- id = 128799 -- parent_id = 128799 +- id = 130256 +- parent_id = 130256 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0626_voorschoten/emissions.csv b/datasets/GM0626_voorschoten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0626_voorschoten/emissions.csv +++ b/datasets/GM0626_voorschoten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0626_voorschoten/graph_values.yml b/datasets/GM0626_voorschoten/graph_values.yml index c0d383dc08..ceb9d0ef8a 100644 --- a/datasets/GM0626_voorschoten/graph_values.yml +++ b/datasets/GM0626_voorschoten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1911.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15319467378659438 - :network_gas: 0.157429294173731 - :ambient_heat: 0.6893760320396747 + :electricity: 0.18529359119088887 + :network_gas: 0.1661776104200129 + :ambient_heat: 0.6485287983890982 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11502.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 696.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2133278501771498 - :network_gas: 0.1466885992913986 - :ambient_heat: 0.6399835505314517 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0627_waddinxveen/GM0627_waddinxveen.derived.ad b/datasets/GM0627_waddinxveen/GM0627_waddinxveen.derived.ad index 49c440ec29..ce87855f35 100644 --- a/datasets/GM0627_waddinxveen/GM0627_waddinxveen.derived.ad +++ b/datasets/GM0627_waddinxveen/GM0627_waddinxveen.derived.ad @@ -1,6 +1,6 @@ - area = GM0627_waddinxveen -- id = 128804 -- parent_id = 128804 +- id = 130261 +- parent_id = 130261 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0627_waddinxveen/emissions.csv b/datasets/GM0627_waddinxveen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0627_waddinxveen/emissions.csv +++ b/datasets/GM0627_waddinxveen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0627_waddinxveen/graph_values.yml b/datasets/GM0627_waddinxveen/graph_values.yml index da613c132d..241cc83a67 100644 --- a/datasets/GM0627_waddinxveen/graph_values.yml +++ b/datasets/GM0627_waddinxveen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2681.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.16007288346850856 - :network_gas: 0.119599140923203 - :ambient_heat: 0.7203279756082885 + :electricity: 0.19409726664190538 + :network_gas: 0.12656101248764898 + :ambient_heat: 0.6793417208704456 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12786.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 221.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2222252233821721 - :network_gas: 0.11109910647130924 - :ambient_heat: 0.6666756701465186 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0629_wassenaar/GM0629_wassenaar.derived.ad b/datasets/GM0629_wassenaar/GM0629_wassenaar.derived.ad index 9b24ea92ba..019eb9fc73 100644 --- a/datasets/GM0629_wassenaar/GM0629_wassenaar.derived.ad +++ b/datasets/GM0629_wassenaar/GM0629_wassenaar.derived.ad @@ -1,6 +1,6 @@ - area = GM0629_wassenaar -- id = 128806 -- parent_id = 128806 +- id = 130263 +- parent_id = 130263 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0629_wassenaar/emissions.csv b/datasets/GM0629_wassenaar/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0629_wassenaar/emissions.csv +++ b/datasets/GM0629_wassenaar/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0629_wassenaar/graph_values.yml b/datasets/GM0629_wassenaar/graph_values.yml index 4577ec12fb..6908fc88a1 100644 --- a/datasets/GM0629_wassenaar/graph_values.yml +++ b/datasets/GM0629_wassenaar/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3085.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14728359739853053 - :network_gas: 0.18994021430808217 - :ambient_heat: 0.6627761882933874 + :electricity: 0.17776280954463636 + :network_gas: 0.2000661777866762 + :ambient_heat: 0.6221710126686875 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12255.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1596.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20563785501024306 - :network_gas: 0.17744857995902555 - :ambient_heat: 0.6169135650307314 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0632_woerden/GM0632_woerden.derived.ad b/datasets/GM0632_woerden/GM0632_woerden.derived.ad index 533a09bb47..0f570dc44b 100644 --- a/datasets/GM0632_woerden/GM0632_woerden.derived.ad +++ b/datasets/GM0632_woerden/GM0632_woerden.derived.ad @@ -1,6 +1,6 @@ - area = GM0632_woerden -- id = 128820 -- parent_id = 128820 +- id = 130277 +- parent_id = 130277 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0632_woerden/emissions.csv b/datasets/GM0632_woerden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0632_woerden/emissions.csv +++ b/datasets/GM0632_woerden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0632_woerden/graph_values.yml b/datasets/GM0632_woerden/graph_values.yml index b8ab13ae16..66d081e9e9 100644 --- a/datasets/GM0632_woerden/graph_values.yml +++ b/datasets/GM0632_woerden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5840.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1555923701602013 - :network_gas: 0.1442419641188928 - :ambient_heat: 0.7001656657209059 + :electricity: 0.18835749952349717 + :network_gas: 0.1523900025975837 + :ambient_heat: 0.659252497878919 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22411.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 901.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2164355952752528 - :network_gas: 0.13425761889898644 - :ambient_heat: 0.6493067858257607 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0637_zoetermeer/GM0637_zoetermeer.derived.ad b/datasets/GM0637_zoetermeer/GM0637_zoetermeer.derived.ad index 365899af82..5b33492602 100644 --- a/datasets/GM0637_zoetermeer/GM0637_zoetermeer.derived.ad +++ b/datasets/GM0637_zoetermeer/GM0637_zoetermeer.derived.ad @@ -1,6 +1,6 @@ - area = GM0637_zoetermeer -- id = 128829 -- parent_id = 128829 +- id = 130286 +- parent_id = 130286 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0637_zoetermeer/emissions.csv b/datasets/GM0637_zoetermeer/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0637_zoetermeer/emissions.csv +++ b/datasets/GM0637_zoetermeer/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0637_zoetermeer/graph_values.yml b/datasets/GM0637_zoetermeer/graph_values.yml index d5db57913e..ee91a86406 100644 --- a/datasets/GM0637_zoetermeer/graph_values.yml +++ b/datasets/GM0637_zoetermeer/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 14283.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1589736645716735 - :network_gas: 0.12564484485579588 - :ambient_heat: 0.7153814905725308 + :electricity: 0.19268738014009318 + :network_gas: 0.1329055110988639 + :ambient_heat: 0.6744071087610428 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 56357.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 142.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22080696851844453 - :network_gas: 0.11677212592621951 - :ambient_heat: 0.662420905555336 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0638_zoeterwoude/GM0638_zoeterwoude.derived.ad b/datasets/GM0638_zoeterwoude/GM0638_zoeterwoude.derived.ad index 6f5ad0e60e..64d1e30986 100644 --- a/datasets/GM0638_zoeterwoude/GM0638_zoeterwoude.derived.ad +++ b/datasets/GM0638_zoeterwoude/GM0638_zoeterwoude.derived.ad @@ -1,6 +1,6 @@ - area = GM0638_zoeterwoude -- id = 128830 -- parent_id = 128830 +- id = 130287 +- parent_id = 130287 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0638_zoeterwoude/emissions.csv b/datasets/GM0638_zoeterwoude/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0638_zoeterwoude/emissions.csv +++ b/datasets/GM0638_zoeterwoude/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0638_zoeterwoude/graph_values.yml b/datasets/GM0638_zoeterwoude/graph_values.yml index e1a4744d85..aaf9642d7e 100644 --- a/datasets/GM0638_zoeterwoude/graph_values.yml +++ b/datasets/GM0638_zoeterwoude/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1553.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15825854136719514 - :network_gas: 0.12957802248042674 - :ambient_heat: 0.7121634361523781 + :electricity: 0.1917707494525728 + :network_gas: 0.13703035527355126 + :ambient_heat: 0.671198895273876 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 3732.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 99.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2198835449510983 - :network_gas: 0.12046582019560452 - :ambient_heat: 0.6596506348532972 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0642_zwijndrecht/GM0642_zwijndrecht.derived.ad b/datasets/GM0642_zwijndrecht/GM0642_zwijndrecht.derived.ad index 27f0f64256..be810bb804 100644 --- a/datasets/GM0642_zwijndrecht/GM0642_zwijndrecht.derived.ad +++ b/datasets/GM0642_zwijndrecht/GM0642_zwijndrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0642_zwijndrecht -- id = 128835 -- parent_id = 128835 +- id = 130292 +- parent_id = 130292 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0642_zwijndrecht/emissions.csv b/datasets/GM0642_zwijndrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0642_zwijndrecht/emissions.csv +++ b/datasets/GM0642_zwijndrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0642_zwijndrecht/graph_values.yml b/datasets/GM0642_zwijndrecht/graph_values.yml index f491b9e212..2676623f0b 100644 --- a/datasets/GM0642_zwijndrecht/graph_values.yml +++ b/datasets/GM0642_zwijndrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3656.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15406130350122285 - :network_gas: 0.15266283074327425 - :ambient_heat: 0.6932758657555028 + :electricity: 0.18640040308180308 + :network_gas: 0.16119694956840888 + :ambient_heat: 0.6524026473497881 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20717.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 623.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21445188740158472 - :network_gas: 0.14219245039365885 - :ambient_heat: 0.6433556622047564 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0654_borsele/GM0654_borsele.derived.ad b/datasets/GM0654_borsele/GM0654_borsele.derived.ad index f241aa4486..35ed7ccd19 100644 --- a/datasets/GM0654_borsele/GM0654_borsele.derived.ad +++ b/datasets/GM0654_borsele/GM0654_borsele.derived.ad @@ -1,6 +1,6 @@ - area = GM0654_borsele -- id = 128555 -- parent_id = 128555 +- id = 130012 +- parent_id = 130012 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0654_borsele/emissions.csv b/datasets/GM0654_borsele/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0654_borsele/emissions.csv +++ b/datasets/GM0654_borsele/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0654_borsele/graph_values.yml b/datasets/GM0654_borsele/graph_values.yml index da500445f9..2d24afb3d1 100644 --- a/datasets/GM0654_borsele/graph_values.yml +++ b/datasets/GM0654_borsele/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1657.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15294975750399806 - :network_gas: 0.1587763337280106 - :ambient_heat: 0.6882739087679912 + :electricity: 0.18498092366922594 + :network_gas: 0.16758461634170446 + :ambient_heat: 0.6474344599890696 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9820.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 225.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21301003126587634 - :network_gas: 0.1479598749364925 - :ambient_heat: 0.6390300937976312 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0664_goes/GM0664_goes.derived.ad b/datasets/GM0664_goes/GM0664_goes.derived.ad index 8728ad4278..31baba40e3 100644 --- a/datasets/GM0664_goes/GM0664_goes.derived.ad +++ b/datasets/GM0664_goes/GM0664_goes.derived.ad @@ -1,6 +1,6 @@ - area = GM0664_goes -- id = 128611 -- parent_id = 128611 +- id = 130068 +- parent_id = 130068 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0664_goes/emissions.csv b/datasets/GM0664_goes/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0664_goes/emissions.csv +++ b/datasets/GM0664_goes/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0664_goes/graph_values.yml b/datasets/GM0664_goes/graph_values.yml index c0bd961c77..b5a9111ccb 100644 --- a/datasets/GM0664_goes/graph_values.yml +++ b/datasets/GM0664_goes/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6024.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15682848892886744 - :network_gas: 0.13744331089122913 - :ambient_heat: 0.7057282001799035 + :electricity: 0.1899391649295821 + :network_gas: 0.145272497777576 + :ambient_heat: 0.6647883372928419 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18622.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 889.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21803518697657828 - :network_gas: 0.12785925209368443 - :ambient_heat: 0.6541055609297372 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0668_west_maas_en_waal/GM0668_west_maas_en_waal.derived.ad b/datasets/GM0668_west_maas_en_waal/GM0668_west_maas_en_waal.derived.ad index 662cd21158..91cb6e1354 100644 --- a/datasets/GM0668_west_maas_en_waal/GM0668_west_maas_en_waal.derived.ad +++ b/datasets/GM0668_west_maas_en_waal/GM0668_west_maas_en_waal.derived.ad @@ -1,6 +1,6 @@ - area = GM0668_west_maas_en_waal -- id = 128809 -- parent_id = 128809 +- id = 130266 +- parent_id = 130266 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0668_west_maas_en_waal/emissions.csv b/datasets/GM0668_west_maas_en_waal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0668_west_maas_en_waal/emissions.csv +++ b/datasets/GM0668_west_maas_en_waal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0668_west_maas_en_waal/graph_values.yml b/datasets/GM0668_west_maas_en_waal/graph_values.yml index f14de6432c..fc0fb50171 100644 --- a/datasets/GM0668_west_maas_en_waal/graph_values.yml +++ b/datasets/GM0668_west_maas_en_waal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1312.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15688103549636134 - :network_gas: 0.13715430477001272 - :ambient_heat: 0.705964659733626 + :electricity: 0.19000643192078137 + :network_gas: 0.14496979587093597 + :ambient_heat: 0.6650237722082826 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8346.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2181031455705715 - :network_gas: 0.12758741771771162 - :ambient_heat: 0.6543094367117168 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0677_hulst/GM0677_hulst.derived.ad b/datasets/GM0677_hulst/GM0677_hulst.derived.ad index 79df5c79b0..d504a0ae97 100644 --- a/datasets/GM0677_hulst/GM0677_hulst.derived.ad +++ b/datasets/GM0677_hulst/GM0677_hulst.derived.ad @@ -1,6 +1,6 @@ - area = GM0677_hulst -- id = 128650 -- parent_id = 128650 +- id = 130107 +- parent_id = 130107 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0677_hulst/emissions.csv b/datasets/GM0677_hulst/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0677_hulst/emissions.csv +++ b/datasets/GM0677_hulst/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0677_hulst/graph_values.yml b/datasets/GM0677_hulst/graph_values.yml index 02f75bd084..73e5e47b3c 100644 --- a/datasets/GM0677_hulst/graph_values.yml +++ b/datasets/GM0677_hulst/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2020.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15378090364500197 - :network_gas: 0.1542050299524892 - :ambient_heat: 0.6920140664025088 + :electricity: 0.18604221561206252 + :network_gas: 0.16280879555842465 + :ambient_heat: 0.6511489888295128 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13607.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 391.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21408829773279095 - :network_gas: 0.1436468090688341 - :ambient_heat: 0.6422648931983751 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0678_kapelle/GM0678_kapelle.derived.ad b/datasets/GM0678_kapelle/GM0678_kapelle.derived.ad index 3b97828145..80f68d9a09 100644 --- a/datasets/GM0678_kapelle/GM0678_kapelle.derived.ad +++ b/datasets/GM0678_kapelle/GM0678_kapelle.derived.ad @@ -1,6 +1,6 @@ - area = GM0678_kapelle -- id = 128654 -- parent_id = 128654 +- id = 130111 +- parent_id = 130111 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0678_kapelle/emissions.csv b/datasets/GM0678_kapelle/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0678_kapelle/emissions.csv +++ b/datasets/GM0678_kapelle/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0678_kapelle/graph_values.yml b/datasets/GM0678_kapelle/graph_values.yml index d2e33106bd..a2d663abb8 100644 --- a/datasets/GM0678_kapelle/graph_values.yml +++ b/datasets/GM0678_kapelle/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 947.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15685567618473606 - :network_gas: 0.13729378098395187 - :ambient_heat: 0.7058505428313122 + :electricity: 0.18997396811736816 + :network_gas: 0.1451158832016573 + :ambient_heat: 0.6649101486809744 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5456.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 98.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2180703487122359 - :network_gas: 0.1277186051510541 - :ambient_heat: 0.65421104613671 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0687_middelburg/GM0687_middelburg.derived.ad b/datasets/GM0687_middelburg/GM0687_middelburg.derived.ad index 924dc5609e..ba2196ea10 100644 --- a/datasets/GM0687_middelburg/GM0687_middelburg.derived.ad +++ b/datasets/GM0687_middelburg/GM0687_middelburg.derived.ad @@ -1,6 +1,6 @@ - area = GM0687_middelburg -- id = 128685 -- parent_id = 128685 +- id = 130142 +- parent_id = 130142 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0687_middelburg/emissions.csv b/datasets/GM0687_middelburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0687_middelburg/emissions.csv +++ b/datasets/GM0687_middelburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0687_middelburg/graph_values.yml b/datasets/GM0687_middelburg/graph_values.yml index d3c43a8029..bde2ec875e 100644 --- a/datasets/GM0687_middelburg/graph_values.yml +++ b/datasets/GM0687_middelburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6622.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15181116010362944 - :network_gas: 0.16503861943003806 - :ambient_heat: 0.6831502204663324 + :electricity: 0.18352808496286477 + :network_gas: 0.17412240015833072 + :ambient_heat: 0.6423495148788045 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23882.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2427.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2115316040877635 - :network_gas: 0.15387358364894374 - :ambient_heat: 0.6345948122632927 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0703_reimerswaal/GM0703_reimerswaal.derived.ad b/datasets/GM0703_reimerswaal/GM0703_reimerswaal.derived.ad index db70e6b789..7e19470836 100644 --- a/datasets/GM0703_reimerswaal/GM0703_reimerswaal.derived.ad +++ b/datasets/GM0703_reimerswaal/GM0703_reimerswaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0703_reimerswaal -- id = 128731 -- parent_id = 128731 +- id = 130188 +- parent_id = 130188 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0703_reimerswaal/emissions.csv b/datasets/GM0703_reimerswaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0703_reimerswaal/emissions.csv +++ b/datasets/GM0703_reimerswaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0703_reimerswaal/graph_values.yml b/datasets/GM0703_reimerswaal/graph_values.yml index 1ffe25526b..217732d7fd 100644 --- a/datasets/GM0703_reimerswaal/graph_values.yml +++ b/datasets/GM0703_reimerswaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1193.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15328757589516473 - :network_gas: 0.15691833257659407 - :ambient_heat: 0.6897940915282412 + :electricity: 0.18541220736184613 + :network_gas: 0.16564383686381634 + :ambient_heat: 0.6489439557743375 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9322.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 239.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21344838771241115 - :network_gas: 0.14620644915035305 - :ambient_heat: 0.6403451631372358 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0715_terneuzen/GM0715_terneuzen.derived.ad b/datasets/GM0715_terneuzen/GM0715_terneuzen.derived.ad index ec36727c08..73b9dea26d 100644 --- a/datasets/GM0715_terneuzen/GM0715_terneuzen.derived.ad +++ b/datasets/GM0715_terneuzen/GM0715_terneuzen.derived.ad @@ -1,6 +1,6 @@ - area = GM0715_terneuzen -- id = 128769 -- parent_id = 128769 +- id = 130226 +- parent_id = 130226 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0715_terneuzen/emissions.csv b/datasets/GM0715_terneuzen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0715_terneuzen/emissions.csv +++ b/datasets/GM0715_terneuzen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0715_terneuzen/graph_values.yml b/datasets/GM0715_terneuzen/graph_values.yml index 23576a9e4e..196867cd35 100644 --- a/datasets/GM0715_terneuzen/graph_values.yml +++ b/datasets/GM0715_terneuzen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 10482.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15032777778926773 - :network_gas: 0.17319722215902747 - :ambient_heat: 0.6764750000517048 + :electricity: 0.1816371025587886 + :network_gas: 0.18263183352128035 + :ambient_heat: 0.6357310639199311 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27046.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1594.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20960323427032673 - :network_gas: 0.16158706291869077 - :ambient_heat: 0.6288097028109825 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0716_tholen/GM0716_tholen.derived.ad b/datasets/GM0716_tholen/GM0716_tholen.derived.ad index 70115c2feb..f8ed306532 100644 --- a/datasets/GM0716_tholen/GM0716_tholen.derived.ad +++ b/datasets/GM0716_tholen/GM0716_tholen.derived.ad @@ -1,6 +1,6 @@ - area = GM0716_tholen -- id = 128773 -- parent_id = 128773 +- id = 130230 +- parent_id = 130230 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0716_tholen/emissions.csv b/datasets/GM0716_tholen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0716_tholen/emissions.csv +++ b/datasets/GM0716_tholen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0716_tholen/graph_values.yml b/datasets/GM0716_tholen/graph_values.yml index fef34239e8..379e7240af 100644 --- a/datasets/GM0716_tholen/graph_values.yml +++ b/datasets/GM0716_tholen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2126.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15627001262608697 - :network_gas: 0.14051493055652162 - :ambient_heat: 0.7032150568173914 + :electricity: 0.1892243954100074 + :network_gas: 0.14848896535737852 + :ambient_heat: 0.662286639232614 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11102.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1132.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21731271203964853 - :network_gas: 0.1307491518414036 - :ambient_heat: 0.6519381361189479 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0717_veere/GM0717_veere.derived.ad b/datasets/GM0717_veere/GM0717_veere.derived.ad index 7f4b5d7c07..a3924051c3 100644 --- a/datasets/GM0717_veere/GM0717_veere.derived.ad +++ b/datasets/GM0717_veere/GM0717_veere.derived.ad @@ -1,6 +1,6 @@ - area = GM0717_veere -- id = 128790 -- parent_id = 128790 +- id = 130247 +- parent_id = 130247 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0717_veere/emissions.csv b/datasets/GM0717_veere/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0717_veere/emissions.csv +++ b/datasets/GM0717_veere/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0717_veere/graph_values.yml b/datasets/GM0717_veere/graph_values.yml index 32f26b5b0d..e2552a331a 100644 --- a/datasets/GM0717_veere/graph_values.yml +++ b/datasets/GM0717_veere/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4753.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15319827337194358 - :network_gas: 0.15740949645431038 - :ambient_heat: 0.6893922301737461 + :electricity: 0.18529818694449074 + :network_gas: 0.16615692949831676 + :ambient_heat: 0.6485448835571924 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10972.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 248.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21333252071056033 - :network_gas: 0.14666991715775635 - :ambient_heat: 0.6399975621316834 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0718_vlissingen/GM0718_vlissingen.derived.ad b/datasets/GM0718_vlissingen/GM0718_vlissingen.derived.ad index d186d56130..c676e583d6 100644 --- a/datasets/GM0718_vlissingen/GM0718_vlissingen.derived.ad +++ b/datasets/GM0718_vlissingen/GM0718_vlissingen.derived.ad @@ -1,6 +1,6 @@ - area = GM0718_vlissingen -- id = 128797 -- parent_id = 128797 +- id = 130254 +- parent_id = 130254 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0718_vlissingen/emissions.csv b/datasets/GM0718_vlissingen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0718_vlissingen/emissions.csv +++ b/datasets/GM0718_vlissingen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0718_vlissingen/graph_values.yml b/datasets/GM0718_vlissingen/graph_values.yml index e79b59b27f..e2f08487a1 100644 --- a/datasets/GM0718_vlissingen/graph_values.yml +++ b/datasets/GM0718_vlissingen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5922.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15339556275016772 - :network_gas: 0.1563244048740775 - :ambient_heat: 0.6902800323757546 + :electricity: 0.1855500935833296 + :network_gas: 0.165023347952416 + :ambient_heat: 0.6494265584642545 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22881.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1741.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2135884846931195 - :network_gas: 0.14564606122751975 - :ambient_heat: 0.6407654540793608 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0736_de_ronde_venen/GM0736_de_ronde_venen.derived.ad b/datasets/GM0736_de_ronde_venen/GM0736_de_ronde_venen.derived.ad index 07ed4a35bf..0ccbd79ae2 100644 --- a/datasets/GM0736_de_ronde_venen/GM0736_de_ronde_venen.derived.ad +++ b/datasets/GM0736_de_ronde_venen/GM0736_de_ronde_venen.derived.ad @@ -1,6 +1,6 @@ - area = GM0736_de_ronde_venen -- id = 128573 -- parent_id = 128573 +- id = 130030 +- parent_id = 130030 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0736_de_ronde_venen/emissions.csv b/datasets/GM0736_de_ronde_venen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0736_de_ronde_venen/emissions.csv +++ b/datasets/GM0736_de_ronde_venen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0736_de_ronde_venen/graph_values.yml b/datasets/GM0736_de_ronde_venen/graph_values.yml index 9054cafb70..7354361113 100644 --- a/datasets/GM0736_de_ronde_venen/graph_values.yml +++ b/datasets/GM0736_de_ronde_venen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3547.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15554169693905395 - :network_gas: 0.14452066683520332 - :ambient_heat: 0.6999376362257428 + :electricity: 0.1882926913187522 + :network_gas: 0.15268163994886802 + :ambient_heat: 0.6590256687323798 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18550.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 162.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2163699843735996 - :network_gas: 0.13452006250559911 - :ambient_heat: 0.6491099531208012 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0737_tytsjerksteradiel/GM0737_tytsjerksteradiel.derived.ad b/datasets/GM0737_tytsjerksteradiel/GM0737_tytsjerksteradiel.derived.ad index b3546856c8..a961198f3b 100644 --- a/datasets/GM0737_tytsjerksteradiel/GM0737_tytsjerksteradiel.derived.ad +++ b/datasets/GM0737_tytsjerksteradiel/GM0737_tytsjerksteradiel.derived.ad @@ -1,6 +1,6 @@ - area = GM0737_tytsjerksteradiel -- id = 128779 -- parent_id = 128779 +- id = 130236 +- parent_id = 130236 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0737_tytsjerksteradiel/emissions.csv b/datasets/GM0737_tytsjerksteradiel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0737_tytsjerksteradiel/emissions.csv +++ b/datasets/GM0737_tytsjerksteradiel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0737_tytsjerksteradiel/graph_values.yml b/datasets/GM0737_tytsjerksteradiel/graph_values.yml index 6482725a7c..e054e62cb1 100644 --- a/datasets/GM0737_tytsjerksteradiel/graph_values.yml +++ b/datasets/GM0737_tytsjerksteradiel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2519.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15211845206238703 - :network_gas: 0.16334851365687136 - :ambient_heat: 0.6845330342807416 + :electricity: 0.18392006818679496 + :network_gas: 0.17235847305026342 + :ambient_heat: 0.6437214587629416 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14018.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 47.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21193075927612312 - :network_gas: 0.15227696289550519 - :ambient_heat: 0.6357922778283717 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0743_asten/GM0743_asten.derived.ad b/datasets/GM0743_asten/GM0743_asten.derived.ad index 27a06092b3..82edff241f 100644 --- a/datasets/GM0743_asten/GM0743_asten.derived.ad +++ b/datasets/GM0743_asten/GM0743_asten.derived.ad @@ -1,6 +1,6 @@ - area = GM0743_asten -- id = 128531 -- parent_id = 128531 +- id = 129988 +- parent_id = 129988 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0743_asten/emissions.csv b/datasets/GM0743_asten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0743_asten/emissions.csv +++ b/datasets/GM0743_asten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0743_asten/graph_values.yml b/datasets/GM0743_asten/graph_values.yml index b134d58370..e8426a8f9e 100644 --- a/datasets/GM0743_asten/graph_values.yml +++ b/datasets/GM0743_asten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1560.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1567062168576253 - :network_gas: 0.1381158072830608 - :ambient_heat: 0.705177975859314 + :electricity: 0.189782649432993 + :network_gas: 0.1459768185505366 + :ambient_heat: 0.6642405320164704 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7040.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 58.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21787703993919272 - :network_gas: 0.12849184024322685 - :ambient_heat: 0.6536311198175805 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0744_baarle_nassau/GM0744_baarle_nassau.derived.ad b/datasets/GM0744_baarle_nassau/GM0744_baarle_nassau.derived.ad index fc10c05e70..cceb64e5c9 100644 --- a/datasets/GM0744_baarle_nassau/GM0744_baarle_nassau.derived.ad +++ b/datasets/GM0744_baarle_nassau/GM0744_baarle_nassau.derived.ad @@ -1,6 +1,6 @@ - area = GM0744_baarle_nassau -- id = 128532 -- parent_id = 128532 +- id = 129989 +- parent_id = 129989 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0744_baarle_nassau/emissions.csv b/datasets/GM0744_baarle_nassau/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0744_baarle_nassau/emissions.csv +++ b/datasets/GM0744_baarle_nassau/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0744_baarle_nassau/graph_values.yml b/datasets/GM0744_baarle_nassau/graph_values.yml index 673cf29fb2..bf11b6002c 100644 --- a/datasets/GM0744_baarle_nassau/graph_values.yml +++ b/datasets/GM0744_baarle_nassau/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1393.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15355851984714372 - :network_gas: 0.15542814084070955 - :ambient_heat: 0.6910133393121468 + :electricity: 0.18575819064302934 + :network_gas: 0.16408690980327012 + :ambient_heat: 0.6501548995537006 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 2911.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21379987193049405 - :network_gas: 0.14480051227802157 - :ambient_heat: 0.6413996157914845 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0748_bergen_op_zoom/GM0748_bergen_op_zoom.derived.ad b/datasets/GM0748_bergen_op_zoom/GM0748_bergen_op_zoom.derived.ad index b484664e0e..781d227a77 100644 --- a/datasets/GM0748_bergen_op_zoom/GM0748_bergen_op_zoom.derived.ad +++ b/datasets/GM0748_bergen_op_zoom/GM0748_bergen_op_zoom.derived.ad @@ -1,6 +1,6 @@ - area = GM0748_bergen_op_zoom -- id = 128542 -- parent_id = 128542 +- id = 129999 +- parent_id = 129999 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0748_bergen_op_zoom/emissions.csv b/datasets/GM0748_bergen_op_zoom/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0748_bergen_op_zoom/emissions.csv +++ b/datasets/GM0748_bergen_op_zoom/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0748_bergen_op_zoom/graph_values.yml b/datasets/GM0748_bergen_op_zoom/graph_values.yml index 9d6e15c611..996546b3b2 100644 --- a/datasets/GM0748_bergen_op_zoom/graph_values.yml +++ b/datasets/GM0748_bergen_op_zoom/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 10317.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1559401876677186 - :network_gas: 0.14232896782754753 - :ambient_heat: 0.7017308445047338 + :electricity: 0.18880240295192882 + :network_gas: 0.15038793421819227 + :ambient_heat: 0.660809662829879 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 30883.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2761.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21688586417006525 - :network_gas: 0.13245654331973677 - :ambient_heat: 0.6506575925101981 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0753_best/GM0753_best.derived.ad b/datasets/GM0753_best/GM0753_best.derived.ad index 5103d1c836..83a3aa9dad 100644 --- a/datasets/GM0753_best/GM0753_best.derived.ad +++ b/datasets/GM0753_best/GM0753_best.derived.ad @@ -1,6 +1,6 @@ - area = GM0753_best -- id = 128545 -- parent_id = 128545 +- id = 130002 +- parent_id = 130002 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0753_best/emissions.csv b/datasets/GM0753_best/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0753_best/emissions.csv +++ b/datasets/GM0753_best/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0753_best/graph_values.yml b/datasets/GM0753_best/graph_values.yml index 4631443dba..419e5f7f4b 100644 --- a/datasets/GM0753_best/graph_values.yml +++ b/datasets/GM0753_best/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3948.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1574141107357897 - :network_gas: 0.13422239095315652 - :ambient_heat: 0.7083634983110537 + :electricity: 0.1906889883304699 + :network_gas: 0.1418982874993201 + :ambient_heat: 0.6674127241702101 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12967.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 35.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21879239350665744 - :network_gas: 0.12483042597336776 - :ambient_heat: 0.6563771805199747 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0755_boekel/GM0755_boekel.derived.ad b/datasets/GM0755_boekel/GM0755_boekel.derived.ad index 2a4294ecc3..88209926b6 100644 --- a/datasets/GM0755_boekel/GM0755_boekel.derived.ad +++ b/datasets/GM0755_boekel/GM0755_boekel.derived.ad @@ -1,6 +1,6 @@ - area = GM0755_boekel -- id = 128552 -- parent_id = 128552 +- id = 130009 +- parent_id = 130009 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0755_boekel/emissions.csv b/datasets/GM0755_boekel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0755_boekel/emissions.csv +++ b/datasets/GM0755_boekel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0755_boekel/graph_values.yml b/datasets/GM0755_boekel/graph_values.yml index d38473e239..07b8284245 100644 --- a/datasets/GM0755_boekel/graph_values.yml +++ b/datasets/GM0755_boekel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 632.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15793442720583536 - :network_gas: 0.13136065036790545 - :ambient_heat: 0.7107049224262592 + :electricity: 0.19135546325315694 + :network_gas: 0.13889914592589372 + :ambient_heat: 0.6697453908209494 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4373.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21946482985018356 - :network_gas: 0.12214068059926333 - :ambient_heat: 0.658394489550553 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0757_boxtel/GM0757_boxtel.derived.ad b/datasets/GM0757_boxtel/GM0757_boxtel.derived.ad index c114628922..259b68bae1 100644 --- a/datasets/GM0757_boxtel/GM0757_boxtel.derived.ad +++ b/datasets/GM0757_boxtel/GM0757_boxtel.derived.ad @@ -1,6 +1,6 @@ - area = GM0757_boxtel -- id = 128556 -- parent_id = 128556 +- id = 130013 +- parent_id = 130013 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0757_boxtel/emissions.csv b/datasets/GM0757_boxtel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0757_boxtel/emissions.csv +++ b/datasets/GM0757_boxtel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0757_boxtel/graph_values.yml b/datasets/GM0757_boxtel/graph_values.yml index 0c31bbf099..6fa42405d4 100644 --- a/datasets/GM0757_boxtel/graph_values.yml +++ b/datasets/GM0757_boxtel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2429.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15601180337192466 - :network_gas: 0.14193508145441427 - :ambient_heat: 0.7020531151736611 + :electricity: 0.18889402262103763 + :network_gas: 0.1499756450994059 + :ambient_heat: 0.6611303322795564 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14342.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 240.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21697855734212426 - :network_gas: 0.1320857706315005 - :ambient_heat: 0.6509356720263751 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0758_breda/GM0758_breda.derived.ad b/datasets/GM0758_breda/GM0758_breda.derived.ad index e5823400f4..6e2ad8ab7b 100644 --- a/datasets/GM0758_breda/GM0758_breda.derived.ad +++ b/datasets/GM0758_breda/GM0758_breda.derived.ad @@ -1,6 +1,6 @@ - area = GM0758_breda -- id = 128557 -- parent_id = 128557 +- id = 130014 +- parent_id = 130014 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0758_breda/emissions.csv b/datasets/GM0758_breda/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0758_breda/emissions.csv +++ b/datasets/GM0758_breda/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0758_breda/graph_values.yml b/datasets/GM0758_breda/graph_values.yml index 1a30c638ff..feb26f3103 100644 --- a/datasets/GM0758_breda/graph_values.yml +++ b/datasets/GM0758_breda/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 28914.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15811807906504455 - :network_gas: 0.13035056514225496 - :ambient_heat: 0.7115313557927005 + :electricity: 0.1915907636466922 + :network_gas: 0.1378402925940234 + :ambient_heat: 0.6705689437592844 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 85127.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 6239.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21970209997212906 - :network_gas: 0.12119160011148135 - :ambient_heat: 0.6591062999163896 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0762_deurne/GM0762_deurne.derived.ad b/datasets/GM0762_deurne/GM0762_deurne.derived.ad index fc521ba23f..fce6c726c0 100644 --- a/datasets/GM0762_deurne/GM0762_deurne.derived.ad +++ b/datasets/GM0762_deurne/GM0762_deurne.derived.ad @@ -1,6 +1,6 @@ - area = GM0762_deurne -- id = 128578 -- parent_id = 128578 +- id = 130035 +- parent_id = 130035 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0762_deurne/emissions.csv b/datasets/GM0762_deurne/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0762_deurne/emissions.csv +++ b/datasets/GM0762_deurne/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0762_deurne/graph_values.yml b/datasets/GM0762_deurne/graph_values.yml index c685014f24..a4b89f5b2e 100644 --- a/datasets/GM0762_deurne/graph_values.yml +++ b/datasets/GM0762_deurne/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3042.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556206969909659 - :network_gas: 0.14408616654968764 - :ambient_heat: 0.7002931364593464 + :electricity: 0.18839372898869783 + :network_gas: 0.15222696976383793 + :ambient_heat: 0.6593793012474642 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13959.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21647227112784234 - :network_gas: 0.13411091548862833 - :ambient_heat: 0.6494168133835293 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0765_pekela/GM0765_pekela.derived.ad b/datasets/GM0765_pekela/GM0765_pekela.derived.ad index bcf124ec4c..974b8c61da 100644 --- a/datasets/GM0765_pekela/GM0765_pekela.derived.ad +++ b/datasets/GM0765_pekela/GM0765_pekela.derived.ad @@ -1,6 +1,6 @@ - area = GM0765_pekela -- id = 128726 -- parent_id = 128726 +- id = 130183 +- parent_id = 130183 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0765_pekela/emissions.csv b/datasets/GM0765_pekela/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0765_pekela/emissions.csv +++ b/datasets/GM0765_pekela/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0765_pekela/graph_values.yml b/datasets/GM0765_pekela/graph_values.yml index 633896bac6..40c47c102a 100644 --- a/datasets/GM0765_pekela/graph_values.yml +++ b/datasets/GM0765_pekela/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 921.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1459967152941206 - :network_gas: 0.19701806588233686 - :ambient_heat: 0.6569852188235427 + :electricity: 0.17612757600517118 + :network_gas: 0.2074247395622612 + :ambient_heat: 0.6164476844325675 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5751.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 41.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20395830601505904 - :network_gas: 0.1841667759397616 - :ambient_heat: 0.6118749180451794 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0766_dongen/GM0766_dongen.derived.ad b/datasets/GM0766_dongen/GM0766_dongen.derived.ad index b4126a481c..a1cbf32aca 100644 --- a/datasets/GM0766_dongen/GM0766_dongen.derived.ad +++ b/datasets/GM0766_dongen/GM0766_dongen.derived.ad @@ -1,6 +1,6 @@ - area = GM0766_dongen -- id = 128584 -- parent_id = 128584 +- id = 130041 +- parent_id = 130041 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0766_dongen/emissions.csv b/datasets/GM0766_dongen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0766_dongen/emissions.csv +++ b/datasets/GM0766_dongen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0766_dongen/graph_values.yml b/datasets/GM0766_dongen/graph_values.yml index 50c0a29efe..dc80984341 100644 --- a/datasets/GM0766_dongen/graph_values.yml +++ b/datasets/GM0766_dongen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1534.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15490223493381564 - :network_gas: 0.148037707864014 - :ambient_heat: 0.6970600572021703 + :electricity: 0.18747506018091764 + :network_gas: 0.1563609854932148 + :ambient_heat: 0.6561639543258675 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11447.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 152.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21554176459225685 - :network_gas: 0.13783294163097023 - :ambient_heat: 0.6466252937767728 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0770_eersel/GM0770_eersel.derived.ad b/datasets/GM0770_eersel/GM0770_eersel.derived.ad index c95fa9606d..d7b3877d85 100644 --- a/datasets/GM0770_eersel/GM0770_eersel.derived.ad +++ b/datasets/GM0770_eersel/GM0770_eersel.derived.ad @@ -1,6 +1,6 @@ - area = GM0770_eersel -- id = 128595 -- parent_id = 128595 +- id = 130052 +- parent_id = 130052 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0770_eersel/emissions.csv b/datasets/GM0770_eersel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0770_eersel/emissions.csv +++ b/datasets/GM0770_eersel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0770_eersel/graph_values.yml b/datasets/GM0770_eersel/graph_values.yml index c38ef27f99..313e7b3d1e 100644 --- a/datasets/GM0770_eersel/graph_values.yml +++ b/datasets/GM0770_eersel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1950.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15641565171863447 - :network_gas: 0.13971391554751036 - :ambient_heat: 0.7038704327338552 + :electricity: 0.1894107646014385 + :network_gas: 0.1476503027595824 + :ambient_heat: 0.6629389326389792 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8482.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2175011531813625 - :network_gas: 0.12999538727454768 - :ambient_heat: 0.6525034595440898 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0772_eindhoven/GM0772_eindhoven.derived.ad b/datasets/GM0772_eindhoven/GM0772_eindhoven.derived.ad index 0706c5b9f9..4c6c989aee 100644 --- a/datasets/GM0772_eindhoven/GM0772_eindhoven.derived.ad +++ b/datasets/GM0772_eindhoven/GM0772_eindhoven.derived.ad @@ -1,6 +1,6 @@ - area = GM0772_eindhoven -- id = 128597 -- parent_id = 128597 +- id = 130054 +- parent_id = 130054 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0772_eindhoven/emissions.csv b/datasets/GM0772_eindhoven/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0772_eindhoven/emissions.csv +++ b/datasets/GM0772_eindhoven/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0772_eindhoven/graph_values.yml b/datasets/GM0772_eindhoven/graph_values.yml index 1314631482..2653e3ae66 100644 --- a/datasets/GM0772_eindhoven/graph_values.yml +++ b/datasets/GM0772_eindhoven/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 40802.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1546632873826724 - :network_gas: 0.14935191939530165 - :ambient_heat: 0.6959847932220259 + :electricity: 0.18716963363252953 + :network_gas: 0.15773540698713343 + :ambient_heat: 0.6550949593803369 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 114315.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8656.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2152321629967191 - :network_gas: 0.13907134801312135 - :ambient_heat: 0.6456964889901595 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0777_etten_leur/GM0777_etten_leur.derived.ad b/datasets/GM0777_etten_leur/GM0777_etten_leur.derived.ad index 58d3427e3c..2f667bd95e 100644 --- a/datasets/GM0777_etten_leur/GM0777_etten_leur.derived.ad +++ b/datasets/GM0777_etten_leur/GM0777_etten_leur.derived.ad @@ -1,6 +1,6 @@ - area = GM0777_etten_leur -- id = 128604 -- parent_id = 128604 +- id = 130061 +- parent_id = 130061 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0777_etten_leur/emissions.csv b/datasets/GM0777_etten_leur/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0777_etten_leur/emissions.csv +++ b/datasets/GM0777_etten_leur/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0777_etten_leur/graph_values.yml b/datasets/GM0777_etten_leur/graph_values.yml index 1e0905f397..dd4113543a 100644 --- a/datasets/GM0777_etten_leur/graph_values.yml +++ b/datasets/GM0777_etten_leur/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3353.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15825838051580135 - :network_gas: 0.12957890716309267 - :ambient_heat: 0.7121627123211061 + :electricity: 0.19177054333005156 + :network_gas: 0.137031282826264 + :ambient_heat: 0.6711981738436844 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19146.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 56.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2198833371810575 - :network_gas: 0.12046665127576764 - :ambient_heat: 0.6596500115431748 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0779_geertruidenberg/GM0779_geertruidenberg.derived.ad b/datasets/GM0779_geertruidenberg/GM0779_geertruidenberg.derived.ad index 89ac31b3b5..9419afa1e7 100644 --- a/datasets/GM0779_geertruidenberg/GM0779_geertruidenberg.derived.ad +++ b/datasets/GM0779_geertruidenberg/GM0779_geertruidenberg.derived.ad @@ -1,6 +1,6 @@ - area = GM0779_geertruidenberg -- id = 128605 -- parent_id = 128605 +- id = 130062 +- parent_id = 130062 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0779_geertruidenberg/emissions.csv b/datasets/GM0779_geertruidenberg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0779_geertruidenberg/emissions.csv +++ b/datasets/GM0779_geertruidenberg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0779_geertruidenberg/graph_values.yml b/datasets/GM0779_geertruidenberg/graph_values.yml index 44a133b3ca..aa25cd5841 100644 --- a/datasets/GM0779_geertruidenberg/graph_values.yml +++ b/datasets/GM0779_geertruidenberg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1575.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15708795128991673 - :network_gas: 0.1360162679054579 - :ambient_heat: 0.7068957808046253 + :electricity: 0.1902713381813123 + :network_gas: 0.14377771594118266 + :ambient_heat: 0.6659509458775051 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9636.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 275.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21837071936329427 - :network_gas: 0.1265171225468205 - :ambient_heat: 0.6551121580898852 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0784_gilze_en_rijen/GM0784_gilze_en_rijen.derived.ad b/datasets/GM0784_gilze_en_rijen/GM0784_gilze_en_rijen.derived.ad index 8767073c24..82b275a696 100644 --- a/datasets/GM0784_gilze_en_rijen/GM0784_gilze_en_rijen.derived.ad +++ b/datasets/GM0784_gilze_en_rijen/GM0784_gilze_en_rijen.derived.ad @@ -1,6 +1,6 @@ - area = GM0784_gilze_en_rijen -- id = 128609 -- parent_id = 128609 +- id = 130066 +- parent_id = 130066 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0784_gilze_en_rijen/emissions.csv b/datasets/GM0784_gilze_en_rijen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0784_gilze_en_rijen/emissions.csv +++ b/datasets/GM0784_gilze_en_rijen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0784_gilze_en_rijen/graph_values.yml b/datasets/GM0784_gilze_en_rijen/graph_values.yml index 6503b42a1c..e9cdbbd741 100644 --- a/datasets/GM0784_gilze_en_rijen/graph_values.yml +++ b/datasets/GM0784_gilze_en_rijen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3488.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1567181308541753 - :network_gas: 0.13805028030203592 - :ambient_heat: 0.7052315888437889 + :electricity: 0.18979789944327413 + :network_gas: 0.14590819340310432 + :ambient_heat: 0.6642939071536216 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11376.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 83.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2178924502916693 - :network_gas: 0.12843019883332063 - :ambient_heat: 0.6536773508750101 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0785_goirle/GM0785_goirle.derived.ad b/datasets/GM0785_goirle/GM0785_goirle.derived.ad index 4afb41c42d..33d746c33d 100644 --- a/datasets/GM0785_goirle/GM0785_goirle.derived.ad +++ b/datasets/GM0785_goirle/GM0785_goirle.derived.ad @@ -1,6 +1,6 @@ - area = GM0785_goirle -- id = 128612 -- parent_id = 128612 +- id = 130069 +- parent_id = 130069 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0785_goirle/emissions.csv b/datasets/GM0785_goirle/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0785_goirle/emissions.csv +++ b/datasets/GM0785_goirle/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0785_goirle/graph_values.yml b/datasets/GM0785_goirle/graph_values.yml index a759f338ac..d235ffc044 100644 --- a/datasets/GM0785_goirle/graph_values.yml +++ b/datasets/GM0785_goirle/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1610.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15752221160622232 - :network_gas: 0.13362783616577734 - :ambient_heat: 0.7088499522280004 + :electricity: 0.1908274343216541 + :network_gas: 0.1412752796205528 + :ambient_heat: 0.6678972860577931 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10411.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 222.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2189321243766865 - :network_gas: 0.12427150249325175 - :ambient_heat: 0.6567963731300619 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0794_helmond/GM0794_helmond.derived.ad b/datasets/GM0794_helmond/GM0794_helmond.derived.ad index c8f0274808..04f8cd22c9 100644 --- a/datasets/GM0794_helmond/GM0794_helmond.derived.ad +++ b/datasets/GM0794_helmond/GM0794_helmond.derived.ad @@ -1,6 +1,6 @@ - area = GM0794_helmond -- id = 128635 -- parent_id = 128635 +- id = 130092 +- parent_id = 130092 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0794_helmond/emissions.csv b/datasets/GM0794_helmond/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0794_helmond/emissions.csv +++ b/datasets/GM0794_helmond/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0794_helmond/graph_values.yml b/datasets/GM0794_helmond/graph_values.yml index 7b75804327..941446e135 100644 --- a/datasets/GM0794_helmond/graph_values.yml +++ b/datasets/GM0794_helmond/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8631.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15909489882025762 - :network_gas: 0.12497805648858297 - :ambient_heat: 0.7159270446911593 + :electricity: 0.19284282303158823 + :network_gas: 0.1322060170559421 + :ambient_heat: 0.6749511599124697 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 41212.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1187.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2209634575993525 - :network_gas: 0.11614616960258764 - :ambient_heat: 0.6628903727980598 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0796_s_hertogenbosch/GM0796_s_hertogenbosch.derived.ad b/datasets/GM0796_s_hertogenbosch/GM0796_s_hertogenbosch.derived.ad index 2fafe889a1..61f65185ac 100644 --- a/datasets/GM0796_s_hertogenbosch/GM0796_s_hertogenbosch.derived.ad +++ b/datasets/GM0796_s_hertogenbosch/GM0796_s_hertogenbosch.derived.ad @@ -1,6 +1,6 @@ - area = GM0796_s_hertogenbosch -- id = 128751 -- parent_id = 128751 +- id = 130208 +- parent_id = 130208 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0796_s_hertogenbosch/emissions.csv b/datasets/GM0796_s_hertogenbosch/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0796_s_hertogenbosch/emissions.csv +++ b/datasets/GM0796_s_hertogenbosch/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0796_s_hertogenbosch/graph_values.yml b/datasets/GM0796_s_hertogenbosch/graph_values.yml index 1d509652d2..bfa40c9878 100644 --- a/datasets/GM0796_s_hertogenbosch/graph_values.yml +++ b/datasets/GM0796_s_hertogenbosch/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 29304.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15620816890414269 - :network_gas: 0.14085507102721517 - :ambient_heat: 0.7029367600686421 + :electricity: 0.1891452621508829 + :network_gas: 0.14884506554840193 + :ambient_heat: 0.6620096723007152 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 73387.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2551.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21723268560733955 - :network_gas: 0.13106925757063947 - :ambient_heat: 0.6516980568220209 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0797_heusden/GM0797_heusden.derived.ad b/datasets/GM0797_heusden/GM0797_heusden.derived.ad index e382b1ef54..b59c6d8f13 100644 --- a/datasets/GM0797_heusden/GM0797_heusden.derived.ad +++ b/datasets/GM0797_heusden/GM0797_heusden.derived.ad @@ -1,6 +1,6 @@ - area = GM0797_heusden -- id = 128639 -- parent_id = 128639 +- id = 130096 +- parent_id = 130096 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0797_heusden/emissions.csv b/datasets/GM0797_heusden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0797_heusden/emissions.csv +++ b/datasets/GM0797_heusden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0797_heusden/graph_values.yml b/datasets/GM0797_heusden/graph_values.yml index d30d2d8720..b7bda95fd7 100644 --- a/datasets/GM0797_heusden/graph_values.yml +++ b/datasets/GM0797_heusden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2826.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15650723560583885 - :network_gas: 0.13921020416788635 - :ambient_heat: 0.7042825602262748 + :electricity: 0.18952797135695817 + :network_gas: 0.14712287158220483 + :ambient_heat: 0.6633491570608371 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19327.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 173.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21761964026725214 - :network_gas: 0.1295214389309892 - :ambient_heat: 0.6528589208017588 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0798_hilvarenbeek/GM0798_hilvarenbeek.derived.ad b/datasets/GM0798_hilvarenbeek/GM0798_hilvarenbeek.derived.ad index 2629df1d7f..2b2e22c1d2 100644 --- a/datasets/GM0798_hilvarenbeek/GM0798_hilvarenbeek.derived.ad +++ b/datasets/GM0798_hilvarenbeek/GM0798_hilvarenbeek.derived.ad @@ -1,6 +1,6 @@ - area = GM0798_hilvarenbeek -- id = 128641 -- parent_id = 128641 +- id = 130098 +- parent_id = 130098 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0798_hilvarenbeek/emissions.csv b/datasets/GM0798_hilvarenbeek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0798_hilvarenbeek/emissions.csv +++ b/datasets/GM0798_hilvarenbeek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0798_hilvarenbeek/graph_values.yml b/datasets/GM0798_hilvarenbeek/graph_values.yml index 64a86a9c21..7c03b9cbf5 100644 --- a/datasets/GM0798_hilvarenbeek/graph_values.yml +++ b/datasets/GM0798_hilvarenbeek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1565.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15287579214201358 - :network_gas: 0.15918314321892524 - :ambient_heat: 0.6879410646390611 + :electricity: 0.18488650817585817 + :network_gas: 0.1680094866882033 + :ambient_heat: 0.6471040051359386 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6840.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 75.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21291403548535276 - :network_gas: 0.14834385805858677 - :ambient_heat: 0.6387421064560606 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0809_loon_op_zand/GM0809_loon_op_zand.derived.ad b/datasets/GM0809_loon_op_zand/GM0809_loon_op_zand.derived.ad index eaec008706..db513d4b5d 100644 --- a/datasets/GM0809_loon_op_zand/GM0809_loon_op_zand.derived.ad +++ b/datasets/GM0809_loon_op_zand/GM0809_loon_op_zand.derived.ad @@ -1,6 +1,6 @@ - area = GM0809_loon_op_zand -- id = 128675 -- parent_id = 128675 +- id = 130132 +- parent_id = 130132 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0809_loon_op_zand/emissions.csv b/datasets/GM0809_loon_op_zand/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0809_loon_op_zand/emissions.csv +++ b/datasets/GM0809_loon_op_zand/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0809_loon_op_zand/graph_values.yml b/datasets/GM0809_loon_op_zand/graph_values.yml index 5b1e079c04..7b448f8ef9 100644 --- a/datasets/GM0809_loon_op_zand/graph_values.yml +++ b/datasets/GM0809_loon_op_zand/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2233.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1543604272023535 - :network_gas: 0.1510176503870558 - :ambient_heat: 0.6946219224105906 + :electricity: 0.18678258906324063 + :network_gas: 0.15947711011655227 + :ambient_heat: 0.653740300820207 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10472.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 112.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21483965590413548 - :network_gas: 0.14064137638345586 - :ambient_heat: 0.6445189677124087 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0820_nuenen_gerwen_en_nederwetten/GM0820_nuenen_gerwen_en_nederwetten.derived.ad b/datasets/GM0820_nuenen_gerwen_en_nederwetten/GM0820_nuenen_gerwen_en_nederwetten.derived.ad index 36375847c5..99d7f7d85c 100644 --- a/datasets/GM0820_nuenen_gerwen_en_nederwetten/GM0820_nuenen_gerwen_en_nederwetten.derived.ad +++ b/datasets/GM0820_nuenen_gerwen_en_nederwetten/GM0820_nuenen_gerwen_en_nederwetten.derived.ad @@ -1,6 +1,6 @@ - area = GM0820_nuenen_gerwen_en_nederwetten -- id = 128703 -- parent_id = 128703 +- id = 130160 +- parent_id = 130160 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0820_nuenen_gerwen_en_nederwetten/emissions.csv b/datasets/GM0820_nuenen_gerwen_en_nederwetten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0820_nuenen_gerwen_en_nederwetten/emissions.csv +++ b/datasets/GM0820_nuenen_gerwen_en_nederwetten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0820_nuenen_gerwen_en_nederwetten/graph_values.yml b/datasets/GM0820_nuenen_gerwen_en_nederwetten/graph_values.yml index bcad265069..415b47412a 100644 --- a/datasets/GM0820_nuenen_gerwen_en_nederwetten/graph_values.yml +++ b/datasets/GM0820_nuenen_gerwen_en_nederwetten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1784.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15471597532391673 - :network_gas: 0.14906213571845792 - :ambient_heat: 0.6962218889576253 + :electricity: 0.18723697564169536 + :network_gas: 0.15743236749914644 + :ambient_heat: 0.6553306568591581 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10435.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 83.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2153004358155889 - :network_gas: 0.1387982567376422 - :ambient_heat: 0.6459013074467689 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0823_oirschot/GM0823_oirschot.derived.ad b/datasets/GM0823_oirschot/GM0823_oirschot.derived.ad index 41f20f0c4b..cd1904dcae 100644 --- a/datasets/GM0823_oirschot/GM0823_oirschot.derived.ad +++ b/datasets/GM0823_oirschot/GM0823_oirschot.derived.ad @@ -1,6 +1,6 @@ - area = GM0823_oirschot -- id = 128706 -- parent_id = 128706 +- id = 130163 +- parent_id = 130163 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0823_oirschot/emissions.csv b/datasets/GM0823_oirschot/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0823_oirschot/emissions.csv +++ b/datasets/GM0823_oirschot/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0823_oirschot/graph_values.yml b/datasets/GM0823_oirschot/graph_values.yml index 5f93907e02..7ef3cbe36d 100644 --- a/datasets/GM0823_oirschot/graph_values.yml +++ b/datasets/GM0823_oirschot/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2143.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15720875626588696 - :network_gas: 0.1353518405376219 - :ambient_heat: 0.7074394031964912 + :electricity: 0.19042601851647914 + :network_gas: 0.1430816534067965 + :ambient_heat: 0.6664923280767244 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8010.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 81.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21852691592860715 - :network_gas: 0.12589233628556917 - :ambient_heat: 0.6555807477858238 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0824_oisterwijk/GM0824_oisterwijk.derived.ad b/datasets/GM0824_oisterwijk/GM0824_oisterwijk.derived.ad index f6fe63d8ad..9c475bf752 100644 --- a/datasets/GM0824_oisterwijk/GM0824_oisterwijk.derived.ad +++ b/datasets/GM0824_oisterwijk/GM0824_oisterwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0824_oisterwijk -- id = 128707 -- parent_id = 128707 +- id = 130164 +- parent_id = 130164 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0824_oisterwijk/emissions.csv b/datasets/GM0824_oisterwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0824_oisterwijk/emissions.csv +++ b/datasets/GM0824_oisterwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0824_oisterwijk/graph_values.yml b/datasets/GM0824_oisterwijk/graph_values.yml index 75e9340c93..fc9e0105d5 100644 --- a/datasets/GM0824_oisterwijk/graph_values.yml +++ b/datasets/GM0824_oisterwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5683.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1551139886851656 - :network_gas: 0.14687306223158925 - :ambient_heat: 0.6980129490832453 + :electricity: 0.18774577146470384 + :network_gas: 0.1551427829203027 + :ambient_heat: 0.6571114456149935 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14096.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 259.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21581607646990958 - :network_gas: 0.13673569412035938 - :ambient_heat: 0.647448229409731 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0826_oosterhout/GM0826_oosterhout.derived.ad b/datasets/GM0826_oosterhout/GM0826_oosterhout.derived.ad index ed7dae1243..ba10ee32dc 100644 --- a/datasets/GM0826_oosterhout/GM0826_oosterhout.derived.ad +++ b/datasets/GM0826_oosterhout/GM0826_oosterhout.derived.ad @@ -1,6 +1,6 @@ - area = GM0826_oosterhout -- id = 128714 -- parent_id = 128714 +- id = 130171 +- parent_id = 130171 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0826_oosterhout/emissions.csv b/datasets/GM0826_oosterhout/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0826_oosterhout/emissions.csv +++ b/datasets/GM0826_oosterhout/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0826_oosterhout/graph_values.yml b/datasets/GM0826_oosterhout/graph_values.yml index 3d2813e30d..229f86976e 100644 --- a/datasets/GM0826_oosterhout/graph_values.yml +++ b/datasets/GM0826_oosterhout/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6409.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15669443027173033 - :network_gas: 0.13818063350548326 - :ambient_heat: 0.7051249362227864 + :electricity: 0.1897675626392323 + :network_gas: 0.14604470922254414 + :ambient_heat: 0.6641877281382236 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 25176.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 400.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21786179422743082 - :network_gas: 0.12855282309027433 - :ambient_heat: 0.6535853826822947 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0828_oss/GM0828_oss.derived.ad b/datasets/GM0828_oss/GM0828_oss.derived.ad index 0ec0063239..c856af5530 100644 --- a/datasets/GM0828_oss/GM0828_oss.derived.ad +++ b/datasets/GM0828_oss/GM0828_oss.derived.ad @@ -1,6 +1,6 @@ - area = GM0828_oss -- id = 128719 -- parent_id = 128719 +- id = 130176 +- parent_id = 130176 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0828_oss/emissions.csv b/datasets/GM0828_oss/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0828_oss/emissions.csv +++ b/datasets/GM0828_oss/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0828_oss/graph_values.yml b/datasets/GM0828_oss/graph_values.yml index 99f4e08b58..00e91e3a67 100644 --- a/datasets/GM0828_oss/graph_values.yml +++ b/datasets/GM0828_oss/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 7684.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1557873142688455 - :network_gas: 0.1431697715213497 - :ambient_heat: 0.7010429142098048 + :electricity: 0.18860684432745903 + :network_gas: 0.15126794932562446 + :ambient_heat: 0.6601252063469164 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 40708.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 364.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2166879783084532 - :network_gas: 0.13324808676618494 - :ambient_heat: 0.6500639349253619 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0840_rucphen/GM0840_rucphen.derived.ad b/datasets/GM0840_rucphen/GM0840_rucphen.derived.ad index 93aa488c6c..6c9f0f77f4 100644 --- a/datasets/GM0840_rucphen/GM0840_rucphen.derived.ad +++ b/datasets/GM0840_rucphen/GM0840_rucphen.derived.ad @@ -1,6 +1,6 @@ - area = GM0840_rucphen -- id = 128745 -- parent_id = 128745 +- id = 130202 +- parent_id = 130202 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0840_rucphen/emissions.csv b/datasets/GM0840_rucphen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0840_rucphen/emissions.csv +++ b/datasets/GM0840_rucphen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0840_rucphen/graph_values.yml b/datasets/GM0840_rucphen/graph_values.yml index ed2c73b122..9eb614bdeb 100644 --- a/datasets/GM0840_rucphen/graph_values.yml +++ b/datasets/GM0840_rucphen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1207.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15620494412048694 - :network_gas: 0.140872807337322 - :ambient_heat: 0.7029222485421912 + :electricity: 0.18914113591780912 + :network_gas: 0.14886363362460692 + :ambient_heat: 0.6619952304575839 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9868.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 19.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2172285125823145 - :network_gas: 0.13108594967073978 - :ambient_heat: 0.6516855377469457 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0845_sint_michielsgestel/GM0845_sint_michielsgestel.derived.ad b/datasets/GM0845_sint_michielsgestel/GM0845_sint_michielsgestel.derived.ad index 5dc11f670f..5ab3262a0a 100644 --- a/datasets/GM0845_sint_michielsgestel/GM0845_sint_michielsgestel.derived.ad +++ b/datasets/GM0845_sint_michielsgestel/GM0845_sint_michielsgestel.derived.ad @@ -1,6 +1,6 @@ - area = GM0845_sint_michielsgestel -- id = 128753 -- parent_id = 128753 +- id = 130210 +- parent_id = 130210 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0845_sint_michielsgestel/emissions.csv b/datasets/GM0845_sint_michielsgestel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0845_sint_michielsgestel/emissions.csv +++ b/datasets/GM0845_sint_michielsgestel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0845_sint_michielsgestel/graph_values.yml b/datasets/GM0845_sint_michielsgestel/graph_values.yml index 8f1380def9..b44da6a65e 100644 --- a/datasets/GM0845_sint_michielsgestel/graph_values.yml +++ b/datasets/GM0845_sint_michielsgestel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1607.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15604959728214685 - :network_gas: 0.14172721494819232 - :ambient_heat: 0.7022231877696608 + :electricity: 0.1889423751877453 + :network_gas: 0.14975805822845495 + :ambient_heat: 0.6612995665837998 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12248.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 88.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21702747212946993 - :network_gas: 0.13189011148211796 - :ambient_heat: 0.6510824163884121 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0847_someren/GM0847_someren.derived.ad b/datasets/GM0847_someren/GM0847_someren.derived.ad index 5ba8a17961..e82a7d94f8 100644 --- a/datasets/GM0847_someren/GM0847_someren.derived.ad +++ b/datasets/GM0847_someren/GM0847_someren.derived.ad @@ -1,6 +1,6 @@ - area = GM0847_someren -- id = 128759 -- parent_id = 128759 +- id = 130216 +- parent_id = 130216 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0847_someren/emissions.csv b/datasets/GM0847_someren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0847_someren/emissions.csv +++ b/datasets/GM0847_someren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0847_someren/graph_values.yml b/datasets/GM0847_someren/graph_values.yml index 556ec49df6..8fe85e2537 100644 --- a/datasets/GM0847_someren/graph_values.yml +++ b/datasets/GM0847_someren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3250.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15598637267993296 - :network_gas: 0.14207495026036876 - :ambient_heat: 0.7019386770596984 + :electricity: 0.18886148798795815 + :network_gas: 0.15012205116409544 + :ambient_heat: 0.6610164608479464 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8163.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 10.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21694564273059597 - :network_gas: 0.1322174290776138 - :ambient_heat: 0.6508369281917902 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0848_son_en_breugel/GM0848_son_en_breugel.derived.ad b/datasets/GM0848_son_en_breugel/GM0848_son_en_breugel.derived.ad index 07cf32e0bc..cb150162a4 100644 --- a/datasets/GM0848_son_en_breugel/GM0848_son_en_breugel.derived.ad +++ b/datasets/GM0848_son_en_breugel/GM0848_son_en_breugel.derived.ad @@ -1,6 +1,6 @@ - area = GM0848_son_en_breugel -- id = 128760 -- parent_id = 128760 +- id = 130217 +- parent_id = 130217 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0848_son_en_breugel/emissions.csv b/datasets/GM0848_son_en_breugel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0848_son_en_breugel/emissions.csv +++ b/datasets/GM0848_son_en_breugel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0848_son_en_breugel/graph_values.yml b/datasets/GM0848_son_en_breugel/graph_values.yml index 77340327a2..de6d5733b4 100644 --- a/datasets/GM0848_son_en_breugel/graph_values.yml +++ b/datasets/GM0848_son_en_breugel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2757.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15521348155460613 - :network_gas: 0.1463258514496662 - :ambient_heat: 0.6984606669957276 + :electricity: 0.18787298000454375 + :network_gas: 0.15457034364713318 + :ambient_heat: 0.6575566763483232 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7308.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 12.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21594494453474214 - :network_gas: 0.1362202218610292 - :ambient_heat: 0.6478348336042287 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0851_steenbergen/GM0851_steenbergen.derived.ad b/datasets/GM0851_steenbergen/GM0851_steenbergen.derived.ad index 84f5bcaa5f..5e09a21567 100644 --- a/datasets/GM0851_steenbergen/GM0851_steenbergen.derived.ad +++ b/datasets/GM0851_steenbergen/GM0851_steenbergen.derived.ad @@ -1,6 +1,6 @@ - area = GM0851_steenbergen -- id = 128764 -- parent_id = 128764 +- id = 130221 +- parent_id = 130221 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0851_steenbergen/emissions.csv b/datasets/GM0851_steenbergen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0851_steenbergen/emissions.csv +++ b/datasets/GM0851_steenbergen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0851_steenbergen/graph_values.yml b/datasets/GM0851_steenbergen/graph_values.yml index c12fc07bc2..6a80545ca0 100644 --- a/datasets/GM0851_steenbergen/graph_values.yml +++ b/datasets/GM0851_steenbergen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1337.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15661273638030443 - :network_gas: 0.13862994990832544 - :ambient_heat: 0.70475731371137 + :electricity: 0.1896629982592135 + :network_gas: 0.14651524962629925 + :ambient_heat: 0.6638217521144871 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10458.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 261.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2177561204296766 - :network_gas: 0.12897551828129128 - :ambient_heat: 0.6532683612890322 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0852_waterland/GM0852_waterland.derived.ad b/datasets/GM0852_waterland/GM0852_waterland.derived.ad index 1b55248330..c7bf6a2e4e 100644 --- a/datasets/GM0852_waterland/GM0852_waterland.derived.ad +++ b/datasets/GM0852_waterland/GM0852_waterland.derived.ad @@ -1,6 +1,6 @@ - area = GM0852_waterland -- id = 128807 -- parent_id = 128807 +- id = 130264 +- parent_id = 130264 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0852_waterland/emissions.csv b/datasets/GM0852_waterland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0852_waterland/emissions.csv +++ b/datasets/GM0852_waterland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0852_waterland/graph_values.yml b/datasets/GM0852_waterland/graph_values.yml index 715db86079..f52d82d31e 100644 --- a/datasets/GM0852_waterland/graph_values.yml +++ b/datasets/GM0852_waterland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 965.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15224353031850574 - :network_gas: 0.16266058324821844 - :ambient_heat: 0.6850958864332759 + :electricity: 0.18407964367703075 + :network_gas: 0.1716403822855929 + :ambient_heat: 0.6442799740373764 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7391.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 367.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21209319768644314 - :network_gas: 0.1516272092542254 - :ambient_heat: 0.6362795930593316 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0855_tilburg/GM0855_tilburg.derived.ad b/datasets/GM0855_tilburg/GM0855_tilburg.derived.ad index 56b837b6d1..a22ae2ae11 100644 --- a/datasets/GM0855_tilburg/GM0855_tilburg.derived.ad +++ b/datasets/GM0855_tilburg/GM0855_tilburg.derived.ad @@ -1,6 +1,6 @@ - area = GM0855_tilburg -- id = 128775 -- parent_id = 128775 +- id = 130232 +- parent_id = 130232 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0855_tilburg/emissions.csv b/datasets/GM0855_tilburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0855_tilburg/emissions.csv +++ b/datasets/GM0855_tilburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0855_tilburg/graph_values.yml b/datasets/GM0855_tilburg/graph_values.yml index 93457b2f8d..c8f9e8067d 100644 --- a/datasets/GM0855_tilburg/graph_values.yml +++ b/datasets/GM0855_tilburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 26666.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1609147728043901 - :network_gas: 0.1149687495758544 - :ambient_heat: 0.7241164776197554 + :electricity: 0.1951778580747153 + :network_gas: 0.12169834387145825 + :ambient_heat: 0.6831237980538264 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 102395.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 10266.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22331052585411998 - :network_gas: 0.10675789658351781 - :ambient_heat: 0.6699315775623623 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0858_valkenswaard/GM0858_valkenswaard.derived.ad b/datasets/GM0858_valkenswaard/GM0858_valkenswaard.derived.ad index 3ebabe3f55..8a4782bb14 100644 --- a/datasets/GM0858_valkenswaard/GM0858_valkenswaard.derived.ad +++ b/datasets/GM0858_valkenswaard/GM0858_valkenswaard.derived.ad @@ -1,6 +1,6 @@ - area = GM0858_valkenswaard -- id = 128787 -- parent_id = 128787 +- id = 130244 +- parent_id = 130244 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0858_valkenswaard/emissions.csv b/datasets/GM0858_valkenswaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0858_valkenswaard/emissions.csv +++ b/datasets/GM0858_valkenswaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0858_valkenswaard/graph_values.yml b/datasets/GM0858_valkenswaard/graph_values.yml index 3e67316854..ef7249f1ed 100644 --- a/datasets/GM0858_valkenswaard/graph_values.yml +++ b/datasets/GM0858_valkenswaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2681.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15543178392538862 - :network_gas: 0.14512518841036243 - :ambient_heat: 0.6994430276642488 + :electricity: 0.18815212694060543 + :network_gas: 0.15331418058302 + :ambient_heat: 0.6585336924763746 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14873.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 163.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21622766053863818 - :network_gas: 0.13508935784544482 - :ambient_heat: 0.6486829816159169 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0861_veldhoven/GM0861_veldhoven.derived.ad b/datasets/GM0861_veldhoven/GM0861_veldhoven.derived.ad index 7021b8ba87..35b23a64ef 100644 --- a/datasets/GM0861_veldhoven/GM0861_veldhoven.derived.ad +++ b/datasets/GM0861_veldhoven/GM0861_veldhoven.derived.ad @@ -1,6 +1,6 @@ - area = GM0861_veldhoven -- id = 128791 -- parent_id = 128791 +- id = 130248 +- parent_id = 130248 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0861_veldhoven/emissions.csv b/datasets/GM0861_veldhoven/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0861_veldhoven/emissions.csv +++ b/datasets/GM0861_veldhoven/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0861_veldhoven/graph_values.yml b/datasets/GM0861_veldhoven/graph_values.yml index d964d7a1c2..2a7b87c10d 100644 --- a/datasets/GM0861_veldhoven/graph_values.yml +++ b/datasets/GM0861_veldhoven/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4424.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.156107488461369 - :network_gas: 0.14140881346247064 - :ambient_heat: 0.7024836980761605 + :electricity: 0.18901644226225117 + :network_gas: 0.1494247559018241 + :ambient_heat: 0.6615588018359246 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20078.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 49.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2171023946286328 - :network_gas: 0.13159042148546649 - :ambient_heat: 0.6513071838859008 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0865_vught/GM0865_vught.derived.ad b/datasets/GM0865_vught/GM0865_vught.derived.ad index f638a93121..28ab0b6735 100644 --- a/datasets/GM0865_vught/GM0865_vught.derived.ad +++ b/datasets/GM0865_vught/GM0865_vught.derived.ad @@ -1,6 +1,6 @@ - area = GM0865_vught -- id = 128801 -- parent_id = 128801 +- id = 130258 +- parent_id = 130258 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0865_vught/emissions.csv b/datasets/GM0865_vught/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0865_vught/emissions.csv +++ b/datasets/GM0865_vught/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0865_vught/graph_values.yml b/datasets/GM0865_vught/graph_values.yml index f6475be058..5e11edaa84 100644 --- a/datasets/GM0865_vught/graph_values.yml +++ b/datasets/GM0865_vught/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3782.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15398192138855205 - :network_gas: 0.15309943236296372 - :ambient_heat: 0.6929186462484842 + :electricity: 0.1862989916461543 + :network_gas: 0.16165330170158254 + :ambient_heat: 0.6520477066522631 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13714.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 537.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21434896319373303 - :network_gas: 0.14260414722506562 - :ambient_heat: 0.6430468895812014 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0866_waalre/GM0866_waalre.derived.ad b/datasets/GM0866_waalre/GM0866_waalre.derived.ad index 2c96809af9..88fb18ba7c 100644 --- a/datasets/GM0866_waalre/GM0866_waalre.derived.ad +++ b/datasets/GM0866_waalre/GM0866_waalre.derived.ad @@ -1,6 +1,6 @@ - area = GM0866_waalre -- id = 128802 -- parent_id = 128802 +- id = 130259 +- parent_id = 130259 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0866_waalre/emissions.csv b/datasets/GM0866_waalre/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0866_waalre/emissions.csv +++ b/datasets/GM0866_waalre/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0866_waalre/graph_values.yml b/datasets/GM0866_waalre/graph_values.yml index 5469bccdee..9ea559e15b 100644 --- a/datasets/GM0866_waalre/graph_values.yml +++ b/datasets/GM0866_waalre/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1767.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1540074069843353 - :network_gas: 0.1529592615861559 - :ambient_heat: 0.6930333314295088 + :electricity: 0.18633154911062882 + :network_gas: 0.16150679289546385 + :ambient_heat: 0.6521616579939072 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7789.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 145.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21438200776269503 - :network_gas: 0.14247196894921757 - :ambient_heat: 0.6431460232880873 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0867_waalwijk/GM0867_waalwijk.derived.ad b/datasets/GM0867_waalwijk/GM0867_waalwijk.derived.ad index d88b5fbf63..c2809b8ea0 100644 --- a/datasets/GM0867_waalwijk/GM0867_waalwijk.derived.ad +++ b/datasets/GM0867_waalwijk/GM0867_waalwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM0867_waalwijk -- id = 128803 -- parent_id = 128803 +- id = 130260 +- parent_id = 130260 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0867_waalwijk/emissions.csv b/datasets/GM0867_waalwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0867_waalwijk/emissions.csv +++ b/datasets/GM0867_waalwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0867_waalwijk/graph_values.yml b/datasets/GM0867_waalwijk/graph_values.yml index e16c13cbbf..6b3f27b2a2 100644 --- a/datasets/GM0867_waalwijk/graph_values.yml +++ b/datasets/GM0867_waalwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5142.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15530368786655105 - :network_gas: 0.14582971673396924 - :ambient_heat: 0.6988665953994798 + :electricity: 0.18798832297844958 + :network_gas: 0.15405129949938196 + :ambient_heat: 0.6579603775221684 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21972.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 371.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2160617743312283 - :network_gas: 0.1357529026750845 - :ambient_heat: 0.6481853229936871 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0873_woensdrecht/GM0873_woensdrecht.derived.ad b/datasets/GM0873_woensdrecht/GM0873_woensdrecht.derived.ad index 808e38fec9..d406e96c77 100644 --- a/datasets/GM0873_woensdrecht/GM0873_woensdrecht.derived.ad +++ b/datasets/GM0873_woensdrecht/GM0873_woensdrecht.derived.ad @@ -1,6 +1,6 @@ - area = GM0873_woensdrecht -- id = 128819 -- parent_id = 128819 +- id = 130276 +- parent_id = 130276 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0873_woensdrecht/emissions.csv b/datasets/GM0873_woensdrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0873_woensdrecht/emissions.csv +++ b/datasets/GM0873_woensdrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0873_woensdrecht/graph_values.yml b/datasets/GM0873_woensdrecht/graph_values.yml index 5a599739eb..b8b9ec6ef6 100644 --- a/datasets/GM0873_woensdrecht/graph_values.yml +++ b/datasets/GM0873_woensdrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3236.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556487612100915 - :network_gas: 0.14393181334449676 - :ambient_heat: 0.7004194254454117 + :electricity: 0.18842962331359125 + :network_gas: 0.15206544506369776 + :ambient_heat: 0.659504931622711 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9912.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 62.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21650860605536387 - :network_gas: 0.13396557577854215 - :ambient_heat: 0.649525818166094 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0879_zundert/GM0879_zundert.derived.ad b/datasets/GM0879_zundert/GM0879_zundert.derived.ad index f1cefad99a..1923a11e90 100644 --- a/datasets/GM0879_zundert/GM0879_zundert.derived.ad +++ b/datasets/GM0879_zundert/GM0879_zundert.derived.ad @@ -1,6 +1,6 @@ - area = GM0879_zundert -- id = 128832 -- parent_id = 128832 +- id = 130289 +- parent_id = 130289 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0879_zundert/emissions.csv b/datasets/GM0879_zundert/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0879_zundert/emissions.csv +++ b/datasets/GM0879_zundert/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0879_zundert/graph_values.yml b/datasets/GM0879_zundert/graph_values.yml index 8b8edb618f..2398485d8d 100644 --- a/datasets/GM0879_zundert/graph_values.yml +++ b/datasets/GM0879_zundert/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1394.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.154611434684592 - :network_gas: 0.14963710923474402 - :ambient_heat: 0.695751456080664 + :electricity: 0.18710336168673597 + :network_gas: 0.15803363118284675 + :ambient_heat: 0.6548630071304173 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9626.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 70.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2151649693562863 - :network_gas: 0.13934012257485262 - :ambient_heat: 0.6454949080688611 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0880_wormerland/GM0880_wormerland.derived.ad b/datasets/GM0880_wormerland/GM0880_wormerland.derived.ad index fe83eefcdd..8a68c9575a 100644 --- a/datasets/GM0880_wormerland/GM0880_wormerland.derived.ad +++ b/datasets/GM0880_wormerland/GM0880_wormerland.derived.ad @@ -1,6 +1,6 @@ - area = GM0880_wormerland -- id = 128821 -- parent_id = 128821 +- id = 130278 +- parent_id = 130278 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0880_wormerland/emissions.csv b/datasets/GM0880_wormerland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0880_wormerland/emissions.csv +++ b/datasets/GM0880_wormerland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0880_wormerland/graph_values.yml b/datasets/GM0880_wormerland/graph_values.yml index f18bfe7fe7..f94709ee2e 100644 --- a/datasets/GM0880_wormerland/graph_values.yml +++ b/datasets/GM0880_wormerland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 976.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15445035492557524 - :network_gas: 0.15052304790933616 - :ambient_heat: 0.6950265971650886 + :electricity: 0.18689750462346152 + :network_gas: 0.15895998933321892 + :ambient_heat: 0.6541425060433196 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6911.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 130.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21495621336808124 - :network_gas: 0.14017514652767282 - :ambient_heat: 0.644868640104246 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0882_landgraaf/GM0882_landgraaf.derived.ad b/datasets/GM0882_landgraaf/GM0882_landgraaf.derived.ad index 6d2023d789..ee855b0de8 100644 --- a/datasets/GM0882_landgraaf/GM0882_landgraaf.derived.ad +++ b/datasets/GM0882_landgraaf/GM0882_landgraaf.derived.ad @@ -1,6 +1,6 @@ - area = GM0882_landgraaf -- id = 128661 -- parent_id = 128661 +- id = 130118 +- parent_id = 130118 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0882_landgraaf/emissions.csv b/datasets/GM0882_landgraaf/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0882_landgraaf/emissions.csv +++ b/datasets/GM0882_landgraaf/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0882_landgraaf/graph_values.yml b/datasets/GM0882_landgraaf/graph_values.yml index fc636dedb8..d65c0e42bb 100644 --- a/datasets/GM0882_landgraaf/graph_values.yml +++ b/datasets/GM0882_landgraaf/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3100.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1543973049183598 - :network_gas: 0.15081482294902132 - :ambient_heat: 0.6947878721326189 + :electricity: 0.18682971292735276 + :network_gas: 0.15926505241543243 + :ambient_heat: 0.6539052346572148 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18136.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 892.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2148874551188652 - :network_gas: 0.14045017952453695 - :ambient_heat: 0.6446623653565979 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0888_beek/GM0888_beek.derived.ad b/datasets/GM0888_beek/GM0888_beek.derived.ad index 00f86d8cd4..ff54641a9f 100644 --- a/datasets/GM0888_beek/GM0888_beek.derived.ad +++ b/datasets/GM0888_beek/GM0888_beek.derived.ad @@ -1,6 +1,6 @@ - area = GM0888_beek -- id = 128536 -- parent_id = 128536 +- id = 129993 +- parent_id = 129993 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0888_beek/emissions.csv b/datasets/GM0888_beek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0888_beek/emissions.csv +++ b/datasets/GM0888_beek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0888_beek/graph_values.yml b/datasets/GM0888_beek/graph_values.yml index b4d8ffeb53..e3ef72f8fe 100644 --- a/datasets/GM0888_beek/graph_values.yml +++ b/datasets/GM0888_beek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2372.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15480304121828212 - :network_gas: 0.14858327329944837 - :ambient_heat: 0.6966136854822695 + :electricity: 0.18734826276967478 + :network_gas: 0.1569315746849703 + :ambient_heat: 0.6557201625453549 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7484.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 281.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21541324842874743 - :network_gas: 0.13834700628500804 - :ambient_heat: 0.6462397452862446 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0889_beesel/GM0889_beesel.derived.ad b/datasets/GM0889_beesel/GM0889_beesel.derived.ad index d300a7a4ed..ea127aeca2 100644 --- a/datasets/GM0889_beesel/GM0889_beesel.derived.ad +++ b/datasets/GM0889_beesel/GM0889_beesel.derived.ad @@ -1,6 +1,6 @@ - area = GM0889_beesel -- id = 128537 -- parent_id = 128537 +- id = 129994 +- parent_id = 129994 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0889_beesel/emissions.csv b/datasets/GM0889_beesel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0889_beesel/emissions.csv +++ b/datasets/GM0889_beesel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0889_beesel/graph_values.yml b/datasets/GM0889_beesel/graph_values.yml index 30b64d585c..e5d1b89f29 100644 --- a/datasets/GM0889_beesel/graph_values.yml +++ b/datasets/GM0889_beesel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1025.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15619798410609195 - :network_gas: 0.14091108741649416 - :ambient_heat: 0.7028909284774137 + :electricity: 0.18913223034818305 + :network_gas: 0.14890370874700284 + :ambient_heat: 0.6619640609048141 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6031.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 51.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21721950594841005 - :network_gas: 0.13112197620635763 - :ambient_heat: 0.6516585178452324 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0893_bergen/GM0893_bergen.derived.ad b/datasets/GM0893_bergen/GM0893_bergen.derived.ad index 695ede6aa3..990a6da7c2 100644 --- a/datasets/GM0893_bergen/GM0893_bergen.derived.ad +++ b/datasets/GM0893_bergen/GM0893_bergen.derived.ad @@ -1,6 +1,6 @@ - area = GM0893_bergen -- id = 128540 -- parent_id = 128540 +- id = 129997 +- parent_id = 129997 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0893_bergen/emissions.csv b/datasets/GM0893_bergen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0893_bergen/emissions.csv +++ b/datasets/GM0893_bergen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0893_bergen/graph_values.yml b/datasets/GM0893_bergen/graph_values.yml index 22aa04b5bb..8d606685bb 100644 --- a/datasets/GM0893_bergen/graph_values.yml +++ b/datasets/GM0893_bergen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 715.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1562221429177464 - :network_gas: 0.14077821395239498 - :ambient_heat: 0.7029996431298586 + :electricity: 0.18916314254329925 + :network_gas: 0.14876460366391148 + :ambient_heat: 0.6620722537927893 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5772.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 24.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21725076851417566 - :network_gas: 0.1309969259432952 - :ambient_heat: 0.6517523055425293 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0899_brunssum/GM0899_brunssum.derived.ad b/datasets/GM0899_brunssum/GM0899_brunssum.derived.ad index 664441b39d..1c3108f51e 100644 --- a/datasets/GM0899_brunssum/GM0899_brunssum.derived.ad +++ b/datasets/GM0899_brunssum/GM0899_brunssum.derived.ad @@ -1,6 +1,6 @@ - area = GM0899_brunssum -- id = 128560 -- parent_id = 128560 +- id = 130017 +- parent_id = 130017 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0899_brunssum/emissions.csv b/datasets/GM0899_brunssum/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0899_brunssum/emissions.csv +++ b/datasets/GM0899_brunssum/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0899_brunssum/graph_values.yml b/datasets/GM0899_brunssum/graph_values.yml index bdf313042d..ac774a85e9 100644 --- a/datasets/GM0899_brunssum/graph_values.yml +++ b/datasets/GM0899_brunssum/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3086.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1553970235883845 - :network_gas: 0.14531637026388539 - :ambient_heat: 0.6992866061477302 + :electricity: 0.18810767534772804 + :network_gas: 0.15351421304585602 + :ambient_heat: 0.6583781116064159 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14436.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1202.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21618264728004435 - :network_gas: 0.13526941087982025 - :ambient_heat: 0.6485479418401354 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0907_gennep/GM0907_gennep.derived.ad b/datasets/GM0907_gennep/GM0907_gennep.derived.ad index d2bfdcaf74..dafb35757b 100644 --- a/datasets/GM0907_gennep/GM0907_gennep.derived.ad +++ b/datasets/GM0907_gennep/GM0907_gennep.derived.ad @@ -1,6 +1,6 @@ - area = GM0907_gennep -- id = 128608 -- parent_id = 128608 +- id = 130065 +- parent_id = 130065 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0907_gennep/emissions.csv b/datasets/GM0907_gennep/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0907_gennep/emissions.csv +++ b/datasets/GM0907_gennep/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0907_gennep/graph_values.yml b/datasets/GM0907_gennep/graph_values.yml index 822c100f82..5c3f8a60df 100644 --- a/datasets/GM0907_gennep/graph_values.yml +++ b/datasets/GM0907_gennep/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1945.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15507112237921286 - :network_gas: 0.1471088269143294 - :ambient_heat: 0.6978200507064579 + :electricity: 0.1876909667491483 + :network_gas: 0.15538940450387212 + :ambient_heat: 0.6569196287469796 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7484.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 139.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21576055040195535 - :network_gas: 0.1369577983921763 - :ambient_heat: 0.6472816512058684 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0917_heerlen/GM0917_heerlen.derived.ad b/datasets/GM0917_heerlen/GM0917_heerlen.derived.ad index 7b80a7324c..4ab97eb3a3 100644 --- a/datasets/GM0917_heerlen/GM0917_heerlen.derived.ad +++ b/datasets/GM0917_heerlen/GM0917_heerlen.derived.ad @@ -1,6 +1,6 @@ - area = GM0917_heerlen -- id = 128631 -- parent_id = 128631 +- id = 130088 +- parent_id = 130088 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0917_heerlen/emissions.csv b/datasets/GM0917_heerlen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0917_heerlen/emissions.csv +++ b/datasets/GM0917_heerlen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0917_heerlen/graph_values.yml b/datasets/GM0917_heerlen/graph_values.yml index 0fd2046ba3..bbe58b2a02 100644 --- a/datasets/GM0917_heerlen/graph_values.yml +++ b/datasets/GM0917_heerlen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 16292.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15381852804268134 - :network_gas: 0.1539980957652526 - :ambient_heat: 0.692183376192066 + :electricity: 0.18609027341391585 + :network_gas: 0.16259253513127359 + :ambient_heat: 0.6513171914548106 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 45956.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3851.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21413708991526714 - :network_gas: 0.14345164033892902 - :ambient_heat: 0.6424112697458038 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0928_kerkrade/GM0928_kerkrade.derived.ad b/datasets/GM0928_kerkrade/GM0928_kerkrade.derived.ad index 241114b5c1..eed7fbe337 100644 --- a/datasets/GM0928_kerkrade/GM0928_kerkrade.derived.ad +++ b/datasets/GM0928_kerkrade/GM0928_kerkrade.derived.ad @@ -1,6 +1,6 @@ - area = GM0928_kerkrade -- id = 128656 -- parent_id = 128656 +- id = 130113 +- parent_id = 130113 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0928_kerkrade/emissions.csv b/datasets/GM0928_kerkrade/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0928_kerkrade/emissions.csv +++ b/datasets/GM0928_kerkrade/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0928_kerkrade/graph_values.yml b/datasets/GM0928_kerkrade/graph_values.yml index 61c3b17d16..ab219f66d2 100644 --- a/datasets/GM0928_kerkrade/graph_values.yml +++ b/datasets/GM0928_kerkrade/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5001.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15291275209156394 - :network_gas: 0.15897986349639837 - :ambient_heat: 0.6881073844120377 + :electricity: 0.184933686273022 + :network_gas: 0.16779718493799067 + :ambient_heat: 0.6472691287889872 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23908.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2171.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21296200466430193 - :network_gas: 0.14815198134279003 - :ambient_heat: 0.6388860139929081 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0935_maastricht/GM0935_maastricht.derived.ad b/datasets/GM0935_maastricht/GM0935_maastricht.derived.ad index dba5806415..d273c60ce6 100644 --- a/datasets/GM0935_maastricht/GM0935_maastricht.derived.ad +++ b/datasets/GM0935_maastricht/GM0935_maastricht.derived.ad @@ -1,6 +1,6 @@ - area = GM0935_maastricht -- id = 128681 -- parent_id = 128681 +- id = 130138 +- parent_id = 130138 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0935_maastricht/emissions.csv b/datasets/GM0935_maastricht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0935_maastricht/emissions.csv +++ b/datasets/GM0935_maastricht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0935_maastricht/graph_values.yml b/datasets/GM0935_maastricht/graph_values.yml index e64da4b18c..0e95e74ab9 100644 --- a/datasets/GM0935_maastricht/graph_values.yml +++ b/datasets/GM0935_maastricht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 23072.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15196369144779315 - :network_gas: 0.16419969703713774 - :ambient_heat: 0.6838366115150691 + :electricity: 0.18372264382248887 + :network_gas: 0.17324688399933633 + :ambient_heat: 0.6430304721781748 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 62599.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 5445.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2117297474958715 - :network_gas: 0.15308101001651156 - :ambient_heat: 0.6351892424876168 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0938_meerssen/GM0938_meerssen.derived.ad b/datasets/GM0938_meerssen/GM0938_meerssen.derived.ad index f5dc6bfc68..ee3daf47ab 100644 --- a/datasets/GM0938_meerssen/GM0938_meerssen.derived.ad +++ b/datasets/GM0938_meerssen/GM0938_meerssen.derived.ad @@ -1,6 +1,6 @@ - area = GM0938_meerssen -- id = 128683 -- parent_id = 128683 +- id = 130140 +- parent_id = 130140 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0938_meerssen/emissions.csv b/datasets/GM0938_meerssen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0938_meerssen/emissions.csv +++ b/datasets/GM0938_meerssen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0938_meerssen/graph_values.yml b/datasets/GM0938_meerssen/graph_values.yml index 0ef2a568b4..7e2182b005 100644 --- a/datasets/GM0938_meerssen/graph_values.yml +++ b/datasets/GM0938_meerssen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1146.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15448443009671345 - :network_gas: 0.150335634468076 - :ambient_heat: 0.6951799354352105 + :electricity: 0.18694105007816036 + :network_gas: 0.15876403449819748 + :ambient_heat: 0.6542949154236422 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8632.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 385.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21500037657134494 - :network_gas: 0.139998493714618 - :ambient_heat: 0.645001129714037 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0944_mook_en_middelaar/GM0944_mook_en_middelaar.derived.ad b/datasets/GM0944_mook_en_middelaar/GM0944_mook_en_middelaar.derived.ad index a5a667b202..2ed5482277 100644 --- a/datasets/GM0944_mook_en_middelaar/GM0944_mook_en_middelaar.derived.ad +++ b/datasets/GM0944_mook_en_middelaar/GM0944_mook_en_middelaar.derived.ad @@ -1,6 +1,6 @@ - area = GM0944_mook_en_middelaar -- id = 128691 -- parent_id = 128691 +- id = 130148 +- parent_id = 130148 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0944_mook_en_middelaar/emissions.csv b/datasets/GM0944_mook_en_middelaar/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0944_mook_en_middelaar/emissions.csv +++ b/datasets/GM0944_mook_en_middelaar/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0944_mook_en_middelaar/graph_values.yml b/datasets/GM0944_mook_en_middelaar/graph_values.yml index 80dac8e5e8..35494dfe4f 100644 --- a/datasets/GM0944_mook_en_middelaar/graph_values.yml +++ b/datasets/GM0944_mook_en_middelaar/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 633.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15449765315927796 - :network_gas: 0.15026290762397101 - :ambient_heat: 0.6952394392167509 + :electricity: 0.1869579484277906 + :network_gas: 0.15868799181275942 + :ambient_heat: 0.65435405975945 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 3661.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21501751399095062 - :network_gas: 0.13992994403619513 - :ambient_heat: 0.6450525419728542 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0946_nederweert/GM0946_nederweert.derived.ad b/datasets/GM0946_nederweert/GM0946_nederweert.derived.ad index c8632c11b6..396cf1995c 100644 --- a/datasets/GM0946_nederweert/GM0946_nederweert.derived.ad +++ b/datasets/GM0946_nederweert/GM0946_nederweert.derived.ad @@ -1,6 +1,6 @@ - area = GM0946_nederweert -- id = 128693 -- parent_id = 128693 +- id = 130150 +- parent_id = 130150 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0946_nederweert/emissions.csv b/datasets/GM0946_nederweert/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0946_nederweert/emissions.csv +++ b/datasets/GM0946_nederweert/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0946_nederweert/graph_values.yml b/datasets/GM0946_nederweert/graph_values.yml index 719c2c3b03..9604830e59 100644 --- a/datasets/GM0946_nederweert/graph_values.yml +++ b/datasets/GM0946_nederweert/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1204.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15745428313452262 - :network_gas: 0.1340014427601256 - :ambient_heat: 0.7085442741053518 + :electricity: 0.19074043630016707 + :network_gas: 0.14166677129438157 + :ambient_heat: 0.6675927924054513 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7513.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 31.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21884432180008143 - :network_gas: 0.12462271279967185 - :ambient_heat: 0.6565329654002466 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0957_roermond/GM0957_roermond.derived.ad b/datasets/GM0957_roermond/GM0957_roermond.derived.ad index fd13b63401..372aa59b5f 100644 --- a/datasets/GM0957_roermond/GM0957_roermond.derived.ad +++ b/datasets/GM0957_roermond/GM0957_roermond.derived.ad @@ -1,6 +1,6 @@ - area = GM0957_roermond -- id = 128741 -- parent_id = 128741 +- id = 130198 +- parent_id = 130198 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0957_roermond/emissions.csv b/datasets/GM0957_roermond/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0957_roermond/emissions.csv +++ b/datasets/GM0957_roermond/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0957_roermond/graph_values.yml b/datasets/GM0957_roermond/graph_values.yml index 8c73f0f408..bc92125113 100644 --- a/datasets/GM0957_roermond/graph_values.yml +++ b/datasets/GM0957_roermond/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 12116.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15506946192944748 - :network_gas: 0.14711795938803882 - :ambient_heat: 0.6978125786825137 + :electricity: 0.18768884389288032 + :network_gas: 0.15539895737116105 + :ambient_heat: 0.6569121987359587 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27685.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1646.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21575839952678127 - :network_gas: 0.1369664018928726 - :ambient_heat: 0.6472751985803462 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0965_simpelveld/GM0965_simpelveld.derived.ad b/datasets/GM0965_simpelveld/GM0965_simpelveld.derived.ad index df7095e68e..eb5a8329bf 100644 --- a/datasets/GM0965_simpelveld/GM0965_simpelveld.derived.ad +++ b/datasets/GM0965_simpelveld/GM0965_simpelveld.derived.ad @@ -1,6 +1,6 @@ - area = GM0965_simpelveld -- id = 128752 -- parent_id = 128752 +- id = 130209 +- parent_id = 130209 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0965_simpelveld/emissions.csv b/datasets/GM0965_simpelveld/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0965_simpelveld/emissions.csv +++ b/datasets/GM0965_simpelveld/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0965_simpelveld/graph_values.yml b/datasets/GM0965_simpelveld/graph_values.yml index dfdaefcc28..7fa136db30 100644 --- a/datasets/GM0965_simpelveld/graph_values.yml +++ b/datasets/GM0965_simpelveld/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 790.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15227571599006046 - :network_gas: 0.16248356205466746 - :ambient_heat: 0.6852407219552721 + :electricity: 0.18412070866601363 + :network_gas: 0.17145558956274853 + :ambient_heat: 0.6444237017712379 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5176.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 348.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21213499410385436 - :network_gas: 0.1514600235845803 - :ambient_heat: 0.6364049823115653 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0971_stein/GM0971_stein.derived.ad b/datasets/GM0971_stein/GM0971_stein.derived.ad index 2fd2a793bf..c8f82b4653 100644 --- a/datasets/GM0971_stein/GM0971_stein.derived.ad +++ b/datasets/GM0971_stein/GM0971_stein.derived.ad @@ -1,6 +1,6 @@ - area = GM0971_stein -- id = 128766 -- parent_id = 128766 +- id = 130223 +- parent_id = 130223 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0971_stein/emissions.csv b/datasets/GM0971_stein/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0971_stein/emissions.csv +++ b/datasets/GM0971_stein/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0971_stein/graph_values.yml b/datasets/GM0971_stein/graph_values.yml index fddc0802f2..e98a20228a 100644 --- a/datasets/GM0971_stein/graph_values.yml +++ b/datasets/GM0971_stein/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1843.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15683950288721582 - :network_gas: 0.13738273412031302 - :ambient_heat: 0.7057777629924711 + :electricity: 0.189953264131455 + :network_gas: 0.1452090512756151 + :ambient_heat: 0.6648376845929299 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11803.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 251.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21804943161674245 - :network_gas: 0.12780227353302778 - :ambient_heat: 0.6541482948502297 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0981_vaals/GM0981_vaals.derived.ad b/datasets/GM0981_vaals/GM0981_vaals.derived.ad index bd2d6db693..9d503e7065 100644 --- a/datasets/GM0981_vaals/GM0981_vaals.derived.ad +++ b/datasets/GM0981_vaals/GM0981_vaals.derived.ad @@ -1,6 +1,6 @@ - area = GM0981_vaals -- id = 128785 -- parent_id = 128785 +- id = 130242 +- parent_id = 130242 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0981_vaals/emissions.csv b/datasets/GM0981_vaals/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0981_vaals/emissions.csv +++ b/datasets/GM0981_vaals/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0981_vaals/graph_values.yml b/datasets/GM0981_vaals/graph_values.yml index b87249919f..0d77f27000 100644 --- a/datasets/GM0981_vaals/graph_values.yml +++ b/datasets/GM0981_vaals/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1128.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14851620555352824 - :network_gas: 0.18316086945559476 - :ambient_heat: 0.6683229249908771 + :electricity: 0.1793305065127104 + :network_gas: 0.19301153103038254 + :ambient_heat: 0.627657962456907 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5816.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 184.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20724476058048774 - :network_gas: 0.17102095767804681 - :ambient_heat: 0.6217342817414654 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0983_venlo/GM0983_venlo.derived.ad b/datasets/GM0983_venlo/GM0983_venlo.derived.ad index bb7539ef5f..991d1f3c68 100644 --- a/datasets/GM0983_venlo/GM0983_venlo.derived.ad +++ b/datasets/GM0983_venlo/GM0983_venlo.derived.ad @@ -1,6 +1,6 @@ - area = GM0983_venlo -- id = 128793 -- parent_id = 128793 +- id = 130250 +- parent_id = 130250 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0983_venlo/emissions.csv b/datasets/GM0983_venlo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0983_venlo/emissions.csv +++ b/datasets/GM0983_venlo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0983_venlo/graph_values.yml b/datasets/GM0983_venlo/graph_values.yml index b25931ddba..d6d0899439 100644 --- a/datasets/GM0983_venlo/graph_values.yml +++ b/datasets/GM0983_venlo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 12644.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15474805124120253 - :network_gas: 0.14888571817338606 - :ambient_heat: 0.6963662305854114 + :electricity: 0.1872779740773535 + :network_gas: 0.15724787426670503 + :ambient_heat: 0.6554741516559416 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 47741.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2292.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21534199809013835 - :network_gas: 0.13863200763944422 - :ambient_heat: 0.6460259942704174 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0984_venray/GM0984_venray.derived.ad b/datasets/GM0984_venray/GM0984_venray.derived.ad index 39e1ad593a..841a685d42 100644 --- a/datasets/GM0984_venray/GM0984_venray.derived.ad +++ b/datasets/GM0984_venray/GM0984_venray.derived.ad @@ -1,6 +1,6 @@ - area = GM0984_venray -- id = 128794 -- parent_id = 128794 +- id = 130251 +- parent_id = 130251 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0984_venray/emissions.csv b/datasets/GM0984_venray/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0984_venray/emissions.csv +++ b/datasets/GM0984_venray/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0984_venray/graph_values.yml b/datasets/GM0984_venray/graph_values.yml index a12ed9ae63..a6bf3dc9a8 100644 --- a/datasets/GM0984_venray/graph_values.yml +++ b/datasets/GM0984_venray/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4681.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15608692954506723 - :network_gas: 0.1415218875021303 - :ambient_heat: 0.7023911829528026 + :electricity: 0.1889901384375861 + :network_gas: 0.1495431232873142 + :ambient_heat: 0.6614667382750997 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19163.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 107.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21707578781506268 - :network_gas: 0.13169684873974707 - :ambient_heat: 0.6512273634451904 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0986_voerendaal/GM0986_voerendaal.derived.ad b/datasets/GM0986_voerendaal/GM0986_voerendaal.derived.ad index 02bd35eed8..6d99608173 100644 --- a/datasets/GM0986_voerendaal/GM0986_voerendaal.derived.ad +++ b/datasets/GM0986_voerendaal/GM0986_voerendaal.derived.ad @@ -1,6 +1,6 @@ - area = GM0986_voerendaal -- id = 128798 -- parent_id = 128798 +- id = 130255 +- parent_id = 130255 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0986_voerendaal/emissions.csv b/datasets/GM0986_voerendaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0986_voerendaal/emissions.csv +++ b/datasets/GM0986_voerendaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0986_voerendaal/graph_values.yml b/datasets/GM0986_voerendaal/graph_values.yml index 0371343249..4ae73b3742 100644 --- a/datasets/GM0986_voerendaal/graph_values.yml +++ b/datasets/GM0986_voerendaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 649.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15414849846295456 - :network_gas: 0.15218325845374997 - :ambient_heat: 0.6936682430832954 + :electricity: 0.18651180224267727 + :network_gas: 0.1606956526054628 + :ambient_heat: 0.6527925451518599 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5803.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 200.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21456493310635258 - :network_gas: 0.14174026757458733 - :ambient_heat: 0.64369479931906 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0988_weert/GM0988_weert.derived.ad b/datasets/GM0988_weert/GM0988_weert.derived.ad index 3058a416bb..385a2cccad 100644 --- a/datasets/GM0988_weert/GM0988_weert.derived.ad +++ b/datasets/GM0988_weert/GM0988_weert.derived.ad @@ -1,6 +1,6 @@ - area = GM0988_weert -- id = 128808 -- parent_id = 128808 +- id = 130265 +- parent_id = 130265 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0988_weert/emissions.csv b/datasets/GM0988_weert/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0988_weert/emissions.csv +++ b/datasets/GM0988_weert/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0988_weert/graph_values.yml b/datasets/GM0988_weert/graph_values.yml index 21a4a167e2..aceb812b5c 100644 --- a/datasets/GM0988_weert/graph_values.yml +++ b/datasets/GM0988_weert/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 9149.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15533519399489878 - :network_gas: 0.1456564330280566 - :ambient_heat: 0.6990083729770445 + :electricity: 0.18802861030455342 + :network_gas: 0.1538700062646521 + :ambient_heat: 0.6581013834307944 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6030.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 12.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2161025769663592 - :network_gas: 0.13558969213456099 - :ambient_heat: 0.6483077308990799 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0994_valkenburg_aan_de_geul/GM0994_valkenburg_aan_de_geul.derived.ad b/datasets/GM0994_valkenburg_aan_de_geul/GM0994_valkenburg_aan_de_geul.derived.ad index 2ef5a1ad5b..eaca4af118 100644 --- a/datasets/GM0994_valkenburg_aan_de_geul/GM0994_valkenburg_aan_de_geul.derived.ad +++ b/datasets/GM0994_valkenburg_aan_de_geul/GM0994_valkenburg_aan_de_geul.derived.ad @@ -1,6 +1,6 @@ - area = GM0994_valkenburg_aan_de_geul -- id = 128786 -- parent_id = 128786 +- id = 130243 +- parent_id = 130243 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0994_valkenburg_aan_de_geul/emissions.csv b/datasets/GM0994_valkenburg_aan_de_geul/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0994_valkenburg_aan_de_geul/emissions.csv +++ b/datasets/GM0994_valkenburg_aan_de_geul/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0994_valkenburg_aan_de_geul/graph_values.yml b/datasets/GM0994_valkenburg_aan_de_geul/graph_values.yml index fe56cafefb..31a2642c88 100644 --- a/datasets/GM0994_valkenburg_aan_de_geul/graph_values.yml +++ b/datasets/GM0994_valkenburg_aan_de_geul/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3012.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1516879317752206 - :network_gas: 0.1657163752362866 - :ambient_heat: 0.6825956929884928 + :electricity: 0.18337091879955572 + :network_gas: 0.17482964893584754 + :ambient_heat: 0.6417994322645967 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8304.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 374.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2113715066222081 - :network_gas: 0.15451397351116522 - :ambient_heat: 0.6341145198666266 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM0995_lelystad/GM0995_lelystad.derived.ad b/datasets/GM0995_lelystad/GM0995_lelystad.derived.ad index 42290a7790..9c5ec57cfe 100644 --- a/datasets/GM0995_lelystad/GM0995_lelystad.derived.ad +++ b/datasets/GM0995_lelystad/GM0995_lelystad.derived.ad @@ -1,6 +1,6 @@ - area = GM0995_lelystad -- id = 128669 -- parent_id = 128669 +- id = 130126 +- parent_id = 130126 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM0995_lelystad/emissions.csv b/datasets/GM0995_lelystad/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM0995_lelystad/emissions.csv +++ b/datasets/GM0995_lelystad/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM0995_lelystad/graph_values.yml b/datasets/GM0995_lelystad/graph_values.yml index 2031eedc1b..2171d45af8 100644 --- a/datasets/GM0995_lelystad/graph_values.yml +++ b/datasets/GM0995_lelystad/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6714.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15844166882475516 - :network_gas: 0.1285708214638466 - :ambient_heat: 0.7129875097113982 + :electricity: 0.1920054331986701 + :network_gas: 0.1359742768592425 + :ambient_heat: 0.6720202899420875 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 33718.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 0.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22012006948383755 - :network_gas: 0.11951972206464748 - :ambient_heat: 0.660360208451515 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1507_horst_aan_de_maas/GM1507_horst_aan_de_maas.derived.ad b/datasets/GM1507_horst_aan_de_maas/GM1507_horst_aan_de_maas.derived.ad index da1088c997..0e8969903a 100644 --- a/datasets/GM1507_horst_aan_de_maas/GM1507_horst_aan_de_maas.derived.ad +++ b/datasets/GM1507_horst_aan_de_maas/GM1507_horst_aan_de_maas.derived.ad @@ -1,6 +1,6 @@ - area = GM1507_horst_aan_de_maas -- id = 128647 -- parent_id = 128647 +- id = 130104 +- parent_id = 130104 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1507_horst_aan_de_maas/emissions.csv b/datasets/GM1507_horst_aan_de_maas/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1507_horst_aan_de_maas/emissions.csv +++ b/datasets/GM1507_horst_aan_de_maas/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1507_horst_aan_de_maas/graph_values.yml b/datasets/GM1507_horst_aan_de_maas/graph_values.yml index 6221f0a94a..e3045a5629 100644 --- a/datasets/GM1507_horst_aan_de_maas/graph_values.yml +++ b/datasets/GM1507_horst_aan_de_maas/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4991.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15569661596941034 - :network_gas: 0.14366861216824303 - :ambient_heat: 0.7006347718623466 + :electricity: 0.1884908315595013 + :network_gas: 0.15179000755105265 + :ambient_heat: 0.6597191608894462 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17884.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 118.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21657056183183254 - :network_gas: 0.13371775267266756 - :ambient_heat: 0.6497116854954998 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1509_oude_ijsselstreek/GM1509_oude_ijsselstreek.derived.ad b/datasets/GM1509_oude_ijsselstreek/GM1509_oude_ijsselstreek.derived.ad index c0f6633fa6..815f49cf69 100644 --- a/datasets/GM1509_oude_ijsselstreek/GM1509_oude_ijsselstreek.derived.ad +++ b/datasets/GM1509_oude_ijsselstreek/GM1509_oude_ijsselstreek.derived.ad @@ -1,6 +1,6 @@ - area = GM1509_oude_ijsselstreek -- id = 128720 -- parent_id = 128720 +- id = 130177 +- parent_id = 130177 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1509_oude_ijsselstreek/emissions.csv b/datasets/GM1509_oude_ijsselstreek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1509_oude_ijsselstreek/emissions.csv +++ b/datasets/GM1509_oude_ijsselstreek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1509_oude_ijsselstreek/graph_values.yml b/datasets/GM1509_oude_ijsselstreek/graph_values.yml index bdefcdc9aa..185782fad9 100644 --- a/datasets/GM1509_oude_ijsselstreek/graph_values.yml +++ b/datasets/GM1509_oude_ijsselstreek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2833.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15563358278258402 - :network_gas: 0.1440152946957879 - :ambient_heat: 0.700351122521628 + :electricity: 0.18841020991196655 + :network_gas: 0.15215280549979568 + :ambient_heat: 0.6594369845882377 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17403.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 162.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21648895455893705 - :network_gas: 0.13404418176424968 - :ambient_heat: 0.6494668636768134 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1525_teylingen/GM1525_teylingen.derived.ad b/datasets/GM1525_teylingen/GM1525_teylingen.derived.ad index 6d161d7e68..169bed76b9 100644 --- a/datasets/GM1525_teylingen/GM1525_teylingen.derived.ad +++ b/datasets/GM1525_teylingen/GM1525_teylingen.derived.ad @@ -1,6 +1,6 @@ - area = GM1525_teylingen -- id = 128772 -- parent_id = 128772 +- id = 130229 +- parent_id = 130229 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1525_teylingen/emissions.csv b/datasets/GM1525_teylingen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1525_teylingen/emissions.csv +++ b/datasets/GM1525_teylingen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1525_teylingen/graph_values.yml b/datasets/GM1525_teylingen/graph_values.yml index 4a66b29d2b..572a9a4dd9 100644 --- a/datasets/GM1525_teylingen/graph_values.yml +++ b/datasets/GM1525_teylingen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4502.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15643151601992264 - :network_gas: 0.13962666189042547 - :ambient_heat: 0.7039418220896518 + :electricity: 0.18943106677694088 + :network_gas: 0.14755894283513873 + :ambient_heat: 0.6630099903879203 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16273.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 577.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21752167838708272 - :network_gas: 0.12991328645166678 - :ambient_heat: 0.6525650351612505 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1581_utrechtse_heuvelrug/GM1581_utrechtse_heuvelrug.derived.ad b/datasets/GM1581_utrechtse_heuvelrug/GM1581_utrechtse_heuvelrug.derived.ad index e5e8602a4e..5aaec8b4c7 100644 --- a/datasets/GM1581_utrechtse_heuvelrug/GM1581_utrechtse_heuvelrug.derived.ad +++ b/datasets/GM1581_utrechtse_heuvelrug/GM1581_utrechtse_heuvelrug.derived.ad @@ -1,6 +1,6 @@ - area = GM1581_utrechtse_heuvelrug -- id = 128784 -- parent_id = 128784 +- id = 130241 +- parent_id = 130241 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1581_utrechtse_heuvelrug/emissions.csv b/datasets/GM1581_utrechtse_heuvelrug/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1581_utrechtse_heuvelrug/emissions.csv +++ b/datasets/GM1581_utrechtse_heuvelrug/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1581_utrechtse_heuvelrug/graph_values.yml b/datasets/GM1581_utrechtse_heuvelrug/graph_values.yml index 9b2576b928..bb56b1e5d6 100644 --- a/datasets/GM1581_utrechtse_heuvelrug/graph_values.yml +++ b/datasets/GM1581_utrechtse_heuvelrug/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5764.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15234772074478517 - :network_gas: 0.16208753590368163 - :ambient_heat: 0.6855647433515332 + :electricity: 0.18421258141666616 + :network_gas: 0.1710421615753368 + :ambient_heat: 0.6447452570079971 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21833.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 148.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.212228495371317 - :network_gas: 0.1510860185147297 - :ambient_heat: 0.6366854861139533 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1586_oost_gelre/GM1586_oost_gelre.derived.ad b/datasets/GM1586_oost_gelre/GM1586_oost_gelre.derived.ad index 4436c47773..99dfc82c57 100644 --- a/datasets/GM1586_oost_gelre/GM1586_oost_gelre.derived.ad +++ b/datasets/GM1586_oost_gelre/GM1586_oost_gelre.derived.ad @@ -1,6 +1,6 @@ - area = GM1586_oost_gelre -- id = 128713 -- parent_id = 128713 +- id = 130170 +- parent_id = 130170 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1586_oost_gelre/emissions.csv b/datasets/GM1586_oost_gelre/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1586_oost_gelre/emissions.csv +++ b/datasets/GM1586_oost_gelre/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1586_oost_gelre/graph_values.yml b/datasets/GM1586_oost_gelre/graph_values.yml index 69c065cdea..a19bf4390f 100644 --- a/datasets/GM1586_oost_gelre/graph_values.yml +++ b/datasets/GM1586_oost_gelre/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2984.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15555047131973723 - :network_gas: 0.14447240774144526 - :ambient_heat: 0.6999771209388176 + :electricity: 0.18830391308829791 + :network_gas: 0.1526311419114681 + :ambient_heat: 0.659064945000234 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12912.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 161.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21638134551753513 - :network_gas: 0.13447461792985724 - :ambient_heat: 0.6491440365526078 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1598_koggenland/GM1598_koggenland.derived.ad b/datasets/GM1598_koggenland/GM1598_koggenland.derived.ad index d7f58403cf..884933a830 100644 --- a/datasets/GM1598_koggenland/GM1598_koggenland.derived.ad +++ b/datasets/GM1598_koggenland/GM1598_koggenland.derived.ad @@ -1,6 +1,6 @@ - area = GM1598_koggenland -- id = 128657 -- parent_id = 128657 +- id = 130114 +- parent_id = 130114 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1598_koggenland/emissions.csv b/datasets/GM1598_koggenland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1598_koggenland/emissions.csv +++ b/datasets/GM1598_koggenland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1598_koggenland/graph_values.yml b/datasets/GM1598_koggenland/graph_values.yml index 5280ab3de8..6537da06be 100644 --- a/datasets/GM1598_koggenland/graph_values.yml +++ b/datasets/GM1598_koggenland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1085.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15621579378166658 - :network_gas: 0.14081313420083374 - :ambient_heat: 0.7029710720174998 + :electricity: 0.1891550185094913 + :network_gas: 0.1488011618699412 + :ambient_heat: 0.6620438196205675 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9603.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 17.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21724255251767446 - :network_gas: 0.13102978992929978 - :ambient_heat: 0.6517276575530258 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1621_lansingerland/GM1621_lansingerland.derived.ad b/datasets/GM1621_lansingerland/GM1621_lansingerland.derived.ad index 8c4f05bd08..5282c13bfe 100644 --- a/datasets/GM1621_lansingerland/GM1621_lansingerland.derived.ad +++ b/datasets/GM1621_lansingerland/GM1621_lansingerland.derived.ad @@ -1,6 +1,6 @@ - area = GM1621_lansingerland -- id = 128663 -- parent_id = 128663 +- id = 130120 +- parent_id = 130120 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1621_lansingerland/emissions.csv b/datasets/GM1621_lansingerland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1621_lansingerland/emissions.csv +++ b/datasets/GM1621_lansingerland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1621_lansingerland/graph_values.yml b/datasets/GM1621_lansingerland/graph_values.yml index e13ffccec8..60b4ee073a 100644 --- a/datasets/GM1621_lansingerland/graph_values.yml +++ b/datasets/GM1621_lansingerland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3854.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15953647917745456 - :network_gas: 0.12254936452399982 - :ambient_heat: 0.7179141562985456 + :electricity: 0.19340911988242893 + :network_gas: 0.1296576774703967 + :ambient_heat: 0.6769332026471744 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 24648.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 287.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22153330674064456 - :network_gas: 0.1138667730374195 - :ambient_heat: 0.664599920221936 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1640_leudal/GM1640_leudal.derived.ad b/datasets/GM1640_leudal/GM1640_leudal.derived.ad index e3bb5dae90..31f4de720d 100644 --- a/datasets/GM1640_leudal/GM1640_leudal.derived.ad +++ b/datasets/GM1640_leudal/GM1640_leudal.derived.ad @@ -1,6 +1,6 @@ - area = GM1640_leudal -- id = 128670 -- parent_id = 128670 +- id = 130127 +- parent_id = 130127 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1640_leudal/emissions.csv b/datasets/GM1640_leudal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1640_leudal/emissions.csv +++ b/datasets/GM1640_leudal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1640_leudal/graph_values.yml b/datasets/GM1640_leudal/graph_values.yml index 13d3db6166..1d0fada3dd 100644 --- a/datasets/GM1640_leudal/graph_values.yml +++ b/datasets/GM1640_leudal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2657.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15645104837920193 - :network_gas: 0.13951923391438925 - :ambient_heat: 0.7040297177064088 + :electricity: 0.18945606343304885 + :network_gas: 0.14744645771682746 + :ambient_heat: 0.6630974788501238 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16118.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 124.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2175469489221297 - :network_gas: 0.1298122043114789 - :ambient_heat: 0.6526408467663913 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1641_maasgouw/GM1641_maasgouw.derived.ad b/datasets/GM1641_maasgouw/GM1641_maasgouw.derived.ad index 2c5396d129..520c201d8f 100644 --- a/datasets/GM1641_maasgouw/GM1641_maasgouw.derived.ad +++ b/datasets/GM1641_maasgouw/GM1641_maasgouw.derived.ad @@ -1,6 +1,6 @@ - area = GM1641_maasgouw -- id = 128679 -- parent_id = 128679 +- id = 130136 +- parent_id = 130136 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1641_maasgouw/emissions.csv b/datasets/GM1641_maasgouw/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1641_maasgouw/emissions.csv +++ b/datasets/GM1641_maasgouw/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1641_maasgouw/graph_values.yml b/datasets/GM1641_maasgouw/graph_values.yml index dba75d3210..2e8e644019 100644 --- a/datasets/GM1641_maasgouw/graph_values.yml +++ b/datasets/GM1641_maasgouw/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1966.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15620050896726687 - :network_gas: 0.14089720068003214 - :ambient_heat: 0.7029022903527009 + :electricity: 0.18913546098672768 + :network_gas: 0.1488891708521204 + :ambient_heat: 0.6619753681611519 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10946.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 268.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21722277326135345 - :network_gas: 0.13110890695458385 - :ambient_heat: 0.6516683197840627 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1652_gemert_bakel/GM1652_gemert_bakel.derived.ad b/datasets/GM1652_gemert_bakel/GM1652_gemert_bakel.derived.ad index 6d66b28161..69b1ebfba1 100644 --- a/datasets/GM1652_gemert_bakel/GM1652_gemert_bakel.derived.ad +++ b/datasets/GM1652_gemert_bakel/GM1652_gemert_bakel.derived.ad @@ -1,6 +1,6 @@ - area = GM1652_gemert_bakel -- id = 128607 -- parent_id = 128607 +- id = 130064 +- parent_id = 130064 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1652_gemert_bakel/emissions.csv b/datasets/GM1652_gemert_bakel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1652_gemert_bakel/emissions.csv +++ b/datasets/GM1652_gemert_bakel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1652_gemert_bakel/graph_values.yml b/datasets/GM1652_gemert_bakel/graph_values.yml index 977481c396..d9d78b99c2 100644 --- a/datasets/GM1652_gemert_bakel/graph_values.yml +++ b/datasets/GM1652_gemert_bakel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2427.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1567108673317001 - :network_gas: 0.1380902296756495 - :ambient_heat: 0.7051989029926504 + :electricity: 0.18978860206106868 + :network_gas: 0.14595003168470697 + :ambient_heat: 0.6642613662542244 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12601.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 138.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.217883055189897 - :network_gas: 0.12846777924040972 - :ambient_heat: 0.6536491655696933 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1655_halderberge/GM1655_halderberge.derived.ad b/datasets/GM1655_halderberge/GM1655_halderberge.derived.ad index 44ea1b70fb..991df7e765 100644 --- a/datasets/GM1655_halderberge/GM1655_halderberge.derived.ad +++ b/datasets/GM1655_halderberge/GM1655_halderberge.derived.ad @@ -1,6 +1,6 @@ - area = GM1655_halderberge -- id = 128621 -- parent_id = 128621 +- id = 130078 +- parent_id = 130078 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1655_halderberge/emissions.csv b/datasets/GM1655_halderberge/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1655_halderberge/emissions.csv +++ b/datasets/GM1655_halderberge/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1655_halderberge/graph_values.yml b/datasets/GM1655_halderberge/graph_values.yml index 38f12acb1d..9eb74d833d 100644 --- a/datasets/GM1655_halderberge/graph_values.yml +++ b/datasets/GM1655_halderberge/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1986.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15520537239920987 - :network_gas: 0.14637045180434557 - :ambient_heat: 0.6984241757964444 + :electricity: 0.1878626115425371 + :network_gas: 0.15461700179494647 + :ambient_heat: 0.6575203866625164 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13469.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 281.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2159344415843547 - :network_gas: 0.13626223366257878 - :ambient_heat: 0.6478033247530665 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1658_heeze_leende/GM1658_heeze_leende.derived.ad b/datasets/GM1658_heeze_leende/GM1658_heeze_leende.derived.ad index 3f15b8d6fa..12417c72a3 100644 --- a/datasets/GM1658_heeze_leende/GM1658_heeze_leende.derived.ad +++ b/datasets/GM1658_heeze_leende/GM1658_heeze_leende.derived.ad @@ -1,6 +1,6 @@ - area = GM1658_heeze_leende -- id = 128632 -- parent_id = 128632 +- id = 130089 +- parent_id = 130089 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1658_heeze_leende/emissions.csv b/datasets/GM1658_heeze_leende/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1658_heeze_leende/emissions.csv +++ b/datasets/GM1658_heeze_leende/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1658_heeze_leende/graph_values.yml b/datasets/GM1658_heeze_leende/graph_values.yml index d30a916db8..be99654074 100644 --- a/datasets/GM1658_heeze_leende/graph_values.yml +++ b/datasets/GM1658_heeze_leende/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1483.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556591873947409 - :network_gas: 0.14387446932892484 - :ambient_heat: 0.7004663432763342 + :electricity: 0.18844295866018893 + :network_gas: 0.15200543591554272 + :ambient_heat: 0.6595516054242684 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6905.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 70.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21652210467348296 - :network_gas: 0.13391158130606576 - :ambient_heat: 0.6495663140204512 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1659_laarbeek/GM1659_laarbeek.derived.ad b/datasets/GM1659_laarbeek/GM1659_laarbeek.derived.ad index 4260660f90..9c2b584e2c 100644 --- a/datasets/GM1659_laarbeek/GM1659_laarbeek.derived.ad +++ b/datasets/GM1659_laarbeek/GM1659_laarbeek.derived.ad @@ -1,6 +1,6 @@ - area = GM1659_laarbeek -- id = 128660 -- parent_id = 128660 +- id = 130117 +- parent_id = 130117 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1659_laarbeek/emissions.csv b/datasets/GM1659_laarbeek/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1659_laarbeek/emissions.csv +++ b/datasets/GM1659_laarbeek/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1659_laarbeek/graph_values.yml b/datasets/GM1659_laarbeek/graph_values.yml index 23c4f5d5c5..2f9a4db4d5 100644 --- a/datasets/GM1659_laarbeek/graph_values.yml +++ b/datasets/GM1659_laarbeek/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1407.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15580022183578196 - :network_gas: 0.14309877990319936 - :ambient_heat: 0.7011009982610188 + :electricity: 0.18862335509896536 + :network_gas: 0.15119365074431512 + :ambient_heat: 0.6601829941567195 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9783.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 74.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21670468745506705 - :network_gas: 0.13318125017972957 - :ambient_heat: 0.6501140623652034 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1667_reusel_de_mierden/GM1667_reusel_de_mierden.derived.ad b/datasets/GM1667_reusel_de_mierden/GM1667_reusel_de_mierden.derived.ad index 4be99f2010..5fa6a210e2 100644 --- a/datasets/GM1667_reusel_de_mierden/GM1667_reusel_de_mierden.derived.ad +++ b/datasets/GM1667_reusel_de_mierden/GM1667_reusel_de_mierden.derived.ad @@ -1,6 +1,6 @@ - area = GM1667_reusel_de_mierden -- id = 128734 -- parent_id = 128734 +- id = 130191 +- parent_id = 130191 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1667_reusel_de_mierden/emissions.csv b/datasets/GM1667_reusel_de_mierden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1667_reusel_de_mierden/emissions.csv +++ b/datasets/GM1667_reusel_de_mierden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1667_reusel_de_mierden/graph_values.yml b/datasets/GM1667_reusel_de_mierden/graph_values.yml index 550ab98cde..b9adb2d39f 100644 --- a/datasets/GM1667_reusel_de_mierden/graph_values.yml +++ b/datasets/GM1667_reusel_de_mierden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 854.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15795230492126064 - :network_gas: 0.13126232293306653 - :ambient_heat: 0.7107853721456728 + :electricity: 0.19137836735060998 + :network_gas: 0.13879607733541136 + :ambient_heat: 0.6698255553139787 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 5509.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 16.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2194879287735568 - :network_gas: 0.12204828490577037 - :ambient_heat: 0.6584637863206727 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1669_roerdalen/GM1669_roerdalen.derived.ad b/datasets/GM1669_roerdalen/GM1669_roerdalen.derived.ad index 50693492a7..b87633c0b5 100644 --- a/datasets/GM1669_roerdalen/GM1669_roerdalen.derived.ad +++ b/datasets/GM1669_roerdalen/GM1669_roerdalen.derived.ad @@ -1,6 +1,6 @@ - area = GM1669_roerdalen -- id = 128740 -- parent_id = 128740 +- id = 130197 +- parent_id = 130197 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1669_roerdalen/emissions.csv b/datasets/GM1669_roerdalen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1669_roerdalen/emissions.csv +++ b/datasets/GM1669_roerdalen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1669_roerdalen/graph_values.yml b/datasets/GM1669_roerdalen/graph_values.yml index 879b539d0f..0421f6d21e 100644 --- a/datasets/GM1669_roerdalen/graph_values.yml +++ b/datasets/GM1669_roerdalen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2776.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15596929384697106 - :network_gas: 0.14216888384165946 - :ambient_heat: 0.7018618223113696 + :electricity: 0.18883963860268504 + :network_gas: 0.15022037354277123 + :ambient_heat: 0.6609399878545437 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9538.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 53.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21692353740284206 - :network_gas: 0.1323058503886294 - :ambient_heat: 0.6507706122085285 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1674_roosendaal/GM1674_roosendaal.derived.ad b/datasets/GM1674_roosendaal/GM1674_roosendaal.derived.ad index 359d7313d7..047b015d72 100644 --- a/datasets/GM1674_roosendaal/GM1674_roosendaal.derived.ad +++ b/datasets/GM1674_roosendaal/GM1674_roosendaal.derived.ad @@ -1,6 +1,6 @@ - area = GM1674_roosendaal -- id = 128742 -- parent_id = 128742 +- id = 130199 +- parent_id = 130199 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1674_roosendaal/emissions.csv b/datasets/GM1674_roosendaal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1674_roosendaal/emissions.csv +++ b/datasets/GM1674_roosendaal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1674_roosendaal/graph_values.yml b/datasets/GM1674_roosendaal/graph_values.yml index 9ede64cd24..ffe9d1a35a 100644 --- a/datasets/GM1674_roosendaal/graph_values.yml +++ b/datasets/GM1674_roosendaal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8527.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15324329668348693 - :network_gas: 0.15716186824082182 - :ambient_heat: 0.6895948350756912 + :electricity: 0.18535567125883728 + :network_gas: 0.1658982497024116 + :ambient_heat: 0.6487460790387511 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 35586.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 935.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.213390938085616 - :network_gas: 0.1464362476575338 - :ambient_heat: 0.6401728142568504 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1676_schouwen_duiveland/GM1676_schouwen_duiveland.derived.ad b/datasets/GM1676_schouwen_duiveland/GM1676_schouwen_duiveland.derived.ad index cf57f68fb2..7ec65e1309 100644 --- a/datasets/GM1676_schouwen_duiveland/GM1676_schouwen_duiveland.derived.ad +++ b/datasets/GM1676_schouwen_duiveland/GM1676_schouwen_duiveland.derived.ad @@ -1,6 +1,6 @@ - area = GM1676_schouwen_duiveland -- id = 128750 -- parent_id = 128750 +- id = 130207 +- parent_id = 130207 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1676_schouwen_duiveland/emissions.csv b/datasets/GM1676_schouwen_duiveland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1676_schouwen_duiveland/emissions.csv +++ b/datasets/GM1676_schouwen_duiveland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1676_schouwen_duiveland/graph_values.yml b/datasets/GM1676_schouwen_duiveland/graph_values.yml index 543529a692..0e8c0248d1 100644 --- a/datasets/GM1676_schouwen_duiveland/graph_values.yml +++ b/datasets/GM1676_schouwen_duiveland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6297.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15412338705882908 - :network_gas: 0.15232137117644 - :ambient_heat: 0.6935552417647308 + :electricity: 0.18647971951322442 + :network_gas: 0.16084002510083464 + :ambient_heat: 0.652680255385941 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16968.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1124.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21453237780883463 - :network_gas: 0.1418704887646591 - :ambient_heat: 0.6435971334265063 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1680_aa_en_hunze/GM1680_aa_en_hunze.derived.ad b/datasets/GM1680_aa_en_hunze/GM1680_aa_en_hunze.derived.ad index 22134ce91b..4d170891bf 100644 --- a/datasets/GM1680_aa_en_hunze/GM1680_aa_en_hunze.derived.ad +++ b/datasets/GM1680_aa_en_hunze/GM1680_aa_en_hunze.derived.ad @@ -1,6 +1,6 @@ - area = GM1680_aa_en_hunze -- id = 128513 -- parent_id = 128513 +- id = 129970 +- parent_id = 129970 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1680_aa_en_hunze/emissions.csv b/datasets/GM1680_aa_en_hunze/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1680_aa_en_hunze/emissions.csv +++ b/datasets/GM1680_aa_en_hunze/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1680_aa_en_hunze/graph_values.yml b/datasets/GM1680_aa_en_hunze/graph_values.yml index 62aa4f0f46..0df8e3294b 100644 --- a/datasets/GM1680_aa_en_hunze/graph_values.yml +++ b/datasets/GM1680_aa_en_hunze/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2206.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15263935609033782 - :network_gas: 0.16048354150314192 - :ambient_heat: 0.6868771024065202 + :electricity: 0.18458473565837902 + :network_gas: 0.16936746501879113 + :ambient_heat: 0.6460477993228299 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11030.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 13.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2126071350517391 - :network_gas: 0.14957145979304146 - :ambient_heat: 0.6378214051552195 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1681_borger_odoorn/GM1681_borger_odoorn.derived.ad b/datasets/GM1681_borger_odoorn/GM1681_borger_odoorn.derived.ad index 24368ca6af..53bebaed69 100644 --- a/datasets/GM1681_borger_odoorn/GM1681_borger_odoorn.derived.ad +++ b/datasets/GM1681_borger_odoorn/GM1681_borger_odoorn.derived.ad @@ -1,6 +1,6 @@ - area = GM1681_borger_odoorn -- id = 128553 -- parent_id = 128553 +- id = 130010 +- parent_id = 130010 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1681_borger_odoorn/emissions.csv b/datasets/GM1681_borger_odoorn/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1681_borger_odoorn/emissions.csv +++ b/datasets/GM1681_borger_odoorn/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1681_borger_odoorn/graph_values.yml b/datasets/GM1681_borger_odoorn/graph_values.yml index 2f14519178..23a819858e 100644 --- a/datasets/GM1681_borger_odoorn/graph_values.yml +++ b/datasets/GM1681_borger_odoorn/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1817.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1489430995286598 - :network_gas: 0.18081295259237115 - :ambient_heat: 0.6702439478789691 + :electricity: 0.1798737794323629 + :network_gas: 0.19056679928792267 + :ambient_heat: 0.6295594212797144 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11192.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 0.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2078008743473639 - :network_gas: 0.16879650261054213 - :ambient_heat: 0.6234026230420939 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1690_de_wolden/GM1690_de_wolden.derived.ad b/datasets/GM1690_de_wolden/GM1690_de_wolden.derived.ad index d2457e6172..c715401237 100644 --- a/datasets/GM1690_de_wolden/GM1690_de_wolden.derived.ad +++ b/datasets/GM1690_de_wolden/GM1690_de_wolden.derived.ad @@ -1,6 +1,6 @@ - area = GM1690_de_wolden -- id = 128574 -- parent_id = 128574 +- id = 130031 +- parent_id = 130031 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1690_de_wolden/emissions.csv b/datasets/GM1690_de_wolden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1690_de_wolden/emissions.csv +++ b/datasets/GM1690_de_wolden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1690_de_wolden/graph_values.yml b/datasets/GM1690_de_wolden/graph_values.yml index 9b10f0c388..6d83e47e88 100644 --- a/datasets/GM1690_de_wolden/graph_values.yml +++ b/datasets/GM1690_de_wolden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1890.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15218968207442332 - :network_gas: 0.16295674859067188 - :ambient_heat: 0.6848535693349049 + :electricity: 0.1840109420325121 + :network_gas: 0.1719495401416875 + :ambient_heat: 0.6440395178258004 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10429.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 6.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2120232675016309 - :network_gas: 0.151906929993474 - :ambient_heat: 0.636069802504895 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1695_noord_beveland/GM1695_noord_beveland.derived.ad b/datasets/GM1695_noord_beveland/GM1695_noord_beveland.derived.ad index 2bc773faba..0f40ffe022 100644 --- a/datasets/GM1695_noord_beveland/GM1695_noord_beveland.derived.ad +++ b/datasets/GM1695_noord_beveland/GM1695_noord_beveland.derived.ad @@ -1,6 +1,6 @@ - area = GM1695_noord_beveland -- id = 128699 -- parent_id = 128699 +- id = 130156 +- parent_id = 130156 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1695_noord_beveland/emissions.csv b/datasets/GM1695_noord_beveland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1695_noord_beveland/emissions.csv +++ b/datasets/GM1695_noord_beveland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1695_noord_beveland/graph_values.yml b/datasets/GM1695_noord_beveland/graph_values.yml index 4f80b24f15..6035ba66bd 100644 --- a/datasets/GM1695_noord_beveland/graph_values.yml +++ b/datasets/GM1695_noord_beveland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2013.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15571173686148093 - :network_gas: 0.14358544726185477 - :ambient_heat: 0.7007028158766643 + :electricity: 0.18851017225737918 + :network_gas: 0.15170297428229768 + :ambient_heat: 0.6597868534603232 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4552.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 456.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21659013773979555 - :network_gas: 0.13363944904081562 - :ambient_heat: 0.6497704132193889 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1696_wijdemeren/GM1696_wijdemeren.derived.ad b/datasets/GM1696_wijdemeren/GM1696_wijdemeren.derived.ad index e5b8bce21d..ba21a02b7e 100644 --- a/datasets/GM1696_wijdemeren/GM1696_wijdemeren.derived.ad +++ b/datasets/GM1696_wijdemeren/GM1696_wijdemeren.derived.ad @@ -1,6 +1,6 @@ - area = GM1696_wijdemeren -- id = 128816 -- parent_id = 128816 +- id = 130273 +- parent_id = 130273 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1696_wijdemeren/emissions.csv b/datasets/GM1696_wijdemeren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1696_wijdemeren/emissions.csv +++ b/datasets/GM1696_wijdemeren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1696_wijdemeren/graph_values.yml b/datasets/GM1696_wijdemeren/graph_values.yml index 060714ab6b..709a38f377 100644 --- a/datasets/GM1696_wijdemeren/graph_values.yml +++ b/datasets/GM1696_wijdemeren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2219.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15198190491244587 - :network_gas: 0.1640995229815477 - :ambient_heat: 0.6839185721060065 + :electricity: 0.1837458771474898 + :network_gas: 0.17314233388270436 + :ambient_heat: 0.6431117889698058 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 10783.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 268.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2117534056063192 - :network_gas: 0.1529863775747209 - :ambient_heat: 0.6352602168189599 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1699_noordenveld/GM1699_noordenveld.derived.ad b/datasets/GM1699_noordenveld/GM1699_noordenveld.derived.ad index 272a44ca76..3f451b605d 100644 --- a/datasets/GM1699_noordenveld/GM1699_noordenveld.derived.ad +++ b/datasets/GM1699_noordenveld/GM1699_noordenveld.derived.ad @@ -1,6 +1,6 @@ - area = GM1699_noordenveld -- id = 128700 -- parent_id = 128700 +- id = 130157 +- parent_id = 130157 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1699_noordenveld/emissions.csv b/datasets/GM1699_noordenveld/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1699_noordenveld/emissions.csv +++ b/datasets/GM1699_noordenveld/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1699_noordenveld/graph_values.yml b/datasets/GM1699_noordenveld/graph_values.yml index aa4614578e..c87ecced6c 100644 --- a/datasets/GM1699_noordenveld/graph_values.yml +++ b/datasets/GM1699_noordenveld/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2946.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1503151145452154 - :network_gas: 0.17326687000131535 - :ambient_heat: 0.6764180154534692 + :electricity: 0.18162096849131246 + :network_gas: 0.18270443693195504 + :ambient_heat: 0.6356745945767326 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14831.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 26.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20958676130302997 - :network_gas: 0.16165295478787772 - :ambient_heat: 0.6287602839090922 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1700_twenterand/GM1700_twenterand.derived.ad b/datasets/GM1700_twenterand/GM1700_twenterand.derived.ad index ed624b82b2..7b9b744449 100644 --- a/datasets/GM1700_twenterand/GM1700_twenterand.derived.ad +++ b/datasets/GM1700_twenterand/GM1700_twenterand.derived.ad @@ -1,6 +1,6 @@ - area = GM1700_twenterand -- id = 128777 -- parent_id = 128777 +- id = 130234 +- parent_id = 130234 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1700_twenterand/emissions.csv b/datasets/GM1700_twenterand/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1700_twenterand/emissions.csv +++ b/datasets/GM1700_twenterand/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1700_twenterand/graph_values.yml b/datasets/GM1700_twenterand/graph_values.yml index cb8b94b37c..4438ec1af3 100644 --- a/datasets/GM1700_twenterand/graph_values.yml +++ b/datasets/GM1700_twenterand/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2783.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15331501217682808 - :network_gas: 0.1567674330274456 - :ambient_heat: 0.6899175547957264 + :electricity: 0.18544723916888955 + :network_gas: 0.16548619349972304 + :ambient_heat: 0.6490665673313873 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 13808.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 16.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21348398350879955 - :network_gas: 0.14606406596479965 - :ambient_heat: 0.6404519505264009 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1701_westerveld/GM1701_westerveld.derived.ad b/datasets/GM1701_westerveld/GM1701_westerveld.derived.ad index 659ee4f81e..19c5242a0d 100644 --- a/datasets/GM1701_westerveld/GM1701_westerveld.derived.ad +++ b/datasets/GM1701_westerveld/GM1701_westerveld.derived.ad @@ -1,6 +1,6 @@ - area = GM1701_westerveld -- id = 128810 -- parent_id = 128810 +- id = 130267 +- parent_id = 130267 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1701_westerveld/emissions.csv b/datasets/GM1701_westerveld/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1701_westerveld/emissions.csv +++ b/datasets/GM1701_westerveld/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1701_westerveld/graph_values.yml b/datasets/GM1701_westerveld/graph_values.yml index 8cb48ce871..1d2263191c 100644 --- a/datasets/GM1701_westerveld/graph_values.yml +++ b/datasets/GM1701_westerveld/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2027.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1528418760817832 - :network_gas: 0.15936968155019238 - :ambient_heat: 0.6877884423680245 + :electricity: 0.18484321661101666 + :network_gas: 0.16820429901718237 + :ambient_heat: 0.646952484371801 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8415.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 27.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21287001548684586 - :network_gas: 0.1485199380526142 - :ambient_heat: 0.6386100464605399 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1705_lingewaard/GM1705_lingewaard.derived.ad b/datasets/GM1705_lingewaard/GM1705_lingewaard.derived.ad index 576f52a85b..b454384ad0 100644 --- a/datasets/GM1705_lingewaard/GM1705_lingewaard.derived.ad +++ b/datasets/GM1705_lingewaard/GM1705_lingewaard.derived.ad @@ -1,6 +1,6 @@ - area = GM1705_lingewaard -- id = 128672 -- parent_id = 128672 +- id = 130129 +- parent_id = 130129 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1705_lingewaard/emissions.csv b/datasets/GM1705_lingewaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1705_lingewaard/emissions.csv +++ b/datasets/GM1705_lingewaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1705_lingewaard/graph_values.yml b/datasets/GM1705_lingewaard/graph_values.yml index 34202fef83..8663bdaa29 100644 --- a/datasets/GM1705_lingewaard/graph_values.yml +++ b/datasets/GM1705_lingewaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3198.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15653807169557585 - :network_gas: 0.13904060567433268 - :ambient_heat: 0.7044213226300914 + :electricity: 0.18956743636363627 + :network_gas: 0.14694527879034588 + :ambient_heat: 0.6634872848460177 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20045.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 69.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2176595324319384 - :network_gas: 0.12936187027224408 - :ambient_heat: 0.6529785972958174 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1706_cranendonck/GM1706_cranendonck.derived.ad b/datasets/GM1706_cranendonck/GM1706_cranendonck.derived.ad index 2bc776a1d2..01f0a6a198 100644 --- a/datasets/GM1706_cranendonck/GM1706_cranendonck.derived.ad +++ b/datasets/GM1706_cranendonck/GM1706_cranendonck.derived.ad @@ -1,6 +1,6 @@ - area = GM1706_cranendonck -- id = 128567 -- parent_id = 128567 +- id = 130024 +- parent_id = 130024 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1706_cranendonck/emissions.csv b/datasets/GM1706_cranendonck/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1706_cranendonck/emissions.csv +++ b/datasets/GM1706_cranendonck/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1706_cranendonck/graph_values.yml b/datasets/GM1706_cranendonck/graph_values.yml index 9d9b6675c5..3576897a6f 100644 --- a/datasets/GM1706_cranendonck/graph_values.yml +++ b/datasets/GM1706_cranendonck/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1770.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15370918777463422 - :network_gas: 0.15459946723951165 - :ambient_heat: 0.691691344985854 + :electricity: 0.1859506162621909 + :network_gas: 0.16322099324050876 + :ambient_heat: 0.6508283904973003 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 9032.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 112.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21399529041833343 - :network_gas: 0.14401883832666415 - :ambient_heat: 0.6419858712550025 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1708_steenwijkerland/GM1708_steenwijkerland.derived.ad b/datasets/GM1708_steenwijkerland/GM1708_steenwijkerland.derived.ad index 82f38aaa46..4be3bd8c68 100644 --- a/datasets/GM1708_steenwijkerland/GM1708_steenwijkerland.derived.ad +++ b/datasets/GM1708_steenwijkerland/GM1708_steenwijkerland.derived.ad @@ -1,6 +1,6 @@ - area = GM1708_steenwijkerland -- id = 128765 -- parent_id = 128765 +- id = 130222 +- parent_id = 130222 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1708_steenwijkerland/emissions.csv b/datasets/GM1708_steenwijkerland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1708_steenwijkerland/emissions.csv +++ b/datasets/GM1708_steenwijkerland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1708_steenwijkerland/graph_values.yml b/datasets/GM1708_steenwijkerland/graph_values.yml index 0aa527b31c..1746b2a4fe 100644 --- a/datasets/GM1708_steenwijkerland/graph_values.yml +++ b/datasets/GM1708_steenwijkerland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4033.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15063393292202049 - :network_gas: 0.17151336892888736 - :ambient_heat: 0.6778526981490922 + :electricity: 0.18202721572936048 + :network_gas: 0.1808763216657312 + :ambient_heat: 0.6370964626049083 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20197.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 560.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21000143923059414 - :network_gas: 0.15999424307762122 - :ambient_heat: 0.6300043176917847 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1709_moerdijk/GM1709_moerdijk.derived.ad b/datasets/GM1709_moerdijk/GM1709_moerdijk.derived.ad index 5943f3be24..df6856ad5f 100644 --- a/datasets/GM1709_moerdijk/GM1709_moerdijk.derived.ad +++ b/datasets/GM1709_moerdijk/GM1709_moerdijk.derived.ad @@ -1,6 +1,6 @@ - area = GM1709_moerdijk -- id = 128688 -- parent_id = 128688 +- id = 130145 +- parent_id = 130145 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1709_moerdijk/emissions.csv b/datasets/GM1709_moerdijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1709_moerdijk/emissions.csv +++ b/datasets/GM1709_moerdijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1709_moerdijk/graph_values.yml b/datasets/GM1709_moerdijk/graph_values.yml index 075bc61124..25184da36f 100644 --- a/datasets/GM1709_moerdijk/graph_values.yml +++ b/datasets/GM1709_moerdijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3585.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15513053805535953 - :network_gas: 0.14678204069552264 - :ambient_heat: 0.6980874212491178 + :electricity: 0.18776693034619316 + :network_gas: 0.15504756781323464 + :ambient_heat: 0.6571855018405721 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16616.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 332.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21583751282041944 - :network_gas: 0.1366499487183199 - :ambient_heat: 0.6475125384612607 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1711_echt_susteren/GM1711_echt_susteren.derived.ad b/datasets/GM1711_echt_susteren/GM1711_echt_susteren.derived.ad index 0f4d02ce8f..ef958a3d95 100644 --- a/datasets/GM1711_echt_susteren/GM1711_echt_susteren.derived.ad +++ b/datasets/GM1711_echt_susteren/GM1711_echt_susteren.derived.ad @@ -1,6 +1,6 @@ - area = GM1711_echt_susteren -- id = 128591 -- parent_id = 128591 +- id = 130048 +- parent_id = 130048 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1711_echt_susteren/emissions.csv b/datasets/GM1711_echt_susteren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1711_echt_susteren/emissions.csv +++ b/datasets/GM1711_echt_susteren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1711_echt_susteren/graph_values.yml b/datasets/GM1711_echt_susteren/graph_values.yml index 00bb3711fc..ff6063b477 100644 --- a/datasets/GM1711_echt_susteren/graph_values.yml +++ b/datasets/GM1711_echt_susteren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3442.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15566299972794123 - :network_gas: 0.14385350149632326 - :ambient_heat: 0.7004834987757356 + :electricity: 0.18844783475332297 + :network_gas: 0.15198349346409212 + :ambient_heat: 0.6595686717825849 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14672.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 387.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2165270404103588 - :network_gas: 0.13389183835856242 - :ambient_heat: 0.6495811212310787 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1714_sluis/GM1714_sluis.derived.ad b/datasets/GM1714_sluis/GM1714_sluis.derived.ad index a29352c201..04736389a3 100644 --- a/datasets/GM1714_sluis/GM1714_sluis.derived.ad +++ b/datasets/GM1714_sluis/GM1714_sluis.derived.ad @@ -1,6 +1,6 @@ - area = GM1714_sluis -- id = 128756 -- parent_id = 128756 +- id = 130213 +- parent_id = 130213 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1714_sluis/emissions.csv b/datasets/GM1714_sluis/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1714_sluis/emissions.csv +++ b/datasets/GM1714_sluis/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1714_sluis/graph_values.yml b/datasets/GM1714_sluis/graph_values.yml index ecf87e175c..81d3f0b0ca 100644 --- a/datasets/GM1714_sluis/graph_values.yml +++ b/datasets/GM1714_sluis/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6303.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15038044119842683 - :network_gas: 0.17290757340865234 - :ambient_heat: 0.6767119853929208 + :electricity: 0.1817042018824092 + :network_gas: 0.18232988611985668 + :ambient_heat: 0.635965911997734 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14123.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 747.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2096717394134342 - :network_gas: 0.161313042346261 - :ambient_heat: 0.6290152182403048 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1719_drimmelen/GM1719_drimmelen.derived.ad b/datasets/GM1719_drimmelen/GM1719_drimmelen.derived.ad index 2d21d18412..f2ac7f028d 100644 --- a/datasets/GM1719_drimmelen/GM1719_drimmelen.derived.ad +++ b/datasets/GM1719_drimmelen/GM1719_drimmelen.derived.ad @@ -1,6 +1,6 @@ - area = GM1719_drimmelen -- id = 128587 -- parent_id = 128587 +- id = 130044 +- parent_id = 130044 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1719_drimmelen/emissions.csv b/datasets/GM1719_drimmelen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1719_drimmelen/emissions.csv +++ b/datasets/GM1719_drimmelen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1719_drimmelen/graph_values.yml b/datasets/GM1719_drimmelen/graph_values.yml index c101f82266..4a84e2430a 100644 --- a/datasets/GM1719_drimmelen/graph_values.yml +++ b/datasets/GM1719_drimmelen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1434.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15572845101401545 - :network_gas: 0.14349351942291505 - :ambient_heat: 0.7007780295630694 + :electricity: 0.1885315510959671 + :network_gas: 0.15160676936682682 + :ambient_heat: 0.6598616795372061 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11831.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 131.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21661177601857545 - :network_gas: 0.133552895925696 - :ambient_heat: 0.6498353280557286 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1721_bernheze/GM1721_bernheze.derived.ad b/datasets/GM1721_bernheze/GM1721_bernheze.derived.ad index 8c659d78e2..586c940437 100644 --- a/datasets/GM1721_bernheze/GM1721_bernheze.derived.ad +++ b/datasets/GM1721_bernheze/GM1721_bernheze.derived.ad @@ -1,6 +1,6 @@ - area = GM1721_bernheze -- id = 128544 -- parent_id = 128544 +- id = 130001 +- parent_id = 130001 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1721_bernheze/emissions.csv b/datasets/GM1721_bernheze/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1721_bernheze/emissions.csv +++ b/datasets/GM1721_bernheze/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1721_bernheze/graph_values.yml b/datasets/GM1721_bernheze/graph_values.yml index 0c6ead0bba..2625172442 100644 --- a/datasets/GM1721_bernheze/graph_values.yml +++ b/datasets/GM1721_bernheze/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1844.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1569329374232548 - :network_gas: 0.13686884417209855 - :ambient_heat: 0.7061982184046466 + :electricity: 0.19007287620215446 + :network_gas: 0.1446707961639718 + :ambient_heat: 0.6652563276338737 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 12775.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 21.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21817026733221279 - :network_gas: 0.12731893067114655 - :ambient_heat: 0.6545108019966407 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1723_alphen_chaam/GM1723_alphen_chaam.derived.ad b/datasets/GM1723_alphen_chaam/GM1723_alphen_chaam.derived.ad index 04c153562f..3f440694bc 100644 --- a/datasets/GM1723_alphen_chaam/GM1723_alphen_chaam.derived.ad +++ b/datasets/GM1723_alphen_chaam/GM1723_alphen_chaam.derived.ad @@ -1,6 +1,6 @@ - area = GM1723_alphen_chaam -- id = 128523 -- parent_id = 128523 +- id = 129980 +- parent_id = 129980 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1723_alphen_chaam/emissions.csv b/datasets/GM1723_alphen_chaam/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1723_alphen_chaam/emissions.csv +++ b/datasets/GM1723_alphen_chaam/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1723_alphen_chaam/graph_values.yml b/datasets/GM1723_alphen_chaam/graph_values.yml index 900bd0f5cd..de420cb5fb 100644 --- a/datasets/GM1723_alphen_chaam/graph_values.yml +++ b/datasets/GM1723_alphen_chaam/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2734.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1556568151939548 - :network_gas: 0.1438875164332486 - :ambient_heat: 0.7004556683727967 + :electricity: 0.18843992454816735 + :network_gas: 0.15201908943976788 + :ambient_heat: 0.6595409860120648 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 4407.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 16.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21651903343324888 - :network_gas: 0.13392386626700215 - :ambient_heat: 0.6495571002997489 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1724_bergeijk/GM1724_bergeijk.derived.ad b/datasets/GM1724_bergeijk/GM1724_bergeijk.derived.ad index dba699acbe..09652b7f00 100644 --- a/datasets/GM1724_bergeijk/GM1724_bergeijk.derived.ad +++ b/datasets/GM1724_bergeijk/GM1724_bergeijk.derived.ad @@ -1,6 +1,6 @@ - area = GM1724_bergeijk -- id = 128539 -- parent_id = 128539 +- id = 129996 +- parent_id = 129996 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1724_bergeijk/emissions.csv b/datasets/GM1724_bergeijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1724_bergeijk/emissions.csv +++ b/datasets/GM1724_bergeijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1724_bergeijk/graph_values.yml b/datasets/GM1724_bergeijk/graph_values.yml index d93dc173c3..d96c206009 100644 --- a/datasets/GM1724_bergeijk/graph_values.yml +++ b/datasets/GM1724_bergeijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1733.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15643965563054954 - :network_gas: 0.1395818940319774 - :ambient_heat: 0.703978450337473 + :electricity: 0.18944148345026546 + :network_gas: 0.1475120677360749 + :ambient_heat: 0.6630464488136596 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7994.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 15.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21753220928889577 - :network_gas: 0.12987116284441452 - :ambient_heat: 0.6525966278666897 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1728_bladel/GM1728_bladel.derived.ad b/datasets/GM1728_bladel/GM1728_bladel.derived.ad index 4d22fd5240..f4e97e3a0d 100644 --- a/datasets/GM1728_bladel/GM1728_bladel.derived.ad +++ b/datasets/GM1728_bladel/GM1728_bladel.derived.ad @@ -1,6 +1,6 @@ - area = GM1728_bladel -- id = 128548 -- parent_id = 128548 +- id = 130005 +- parent_id = 130005 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1728_bladel/emissions.csv b/datasets/GM1728_bladel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1728_bladel/emissions.csv +++ b/datasets/GM1728_bladel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1728_bladel/graph_values.yml b/datasets/GM1728_bladel/graph_values.yml index b0f47d90da..a76d73a60b 100644 --- a/datasets/GM1728_bladel/graph_values.yml +++ b/datasets/GM1728_bladel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2347.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15661426754758848 - :network_gas: 0.13862152848826334 - :ambient_heat: 0.7047642039641482 + :electricity: 0.18966495802503688 + :network_gas: 0.1465064306670933 + :ambient_heat: 0.6638286113078699 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8820.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 24.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2177581011166876 - :network_gas: 0.1289675955332472 - :ambient_heat: 0.6532743033500652 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1729_gulpen_wittem/GM1729_gulpen_wittem.derived.ad b/datasets/GM1729_gulpen_wittem/GM1729_gulpen_wittem.derived.ad index 58fb3d73fb..d0996b95c5 100644 --- a/datasets/GM1729_gulpen_wittem/GM1729_gulpen_wittem.derived.ad +++ b/datasets/GM1729_gulpen_wittem/GM1729_gulpen_wittem.derived.ad @@ -1,6 +1,6 @@ - area = GM1729_gulpen_wittem -- id = 128617 -- parent_id = 128617 +- id = 130074 +- parent_id = 130074 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1729_gulpen_wittem/emissions.csv b/datasets/GM1729_gulpen_wittem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1729_gulpen_wittem/emissions.csv +++ b/datasets/GM1729_gulpen_wittem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1729_gulpen_wittem/graph_values.yml b/datasets/GM1729_gulpen_wittem/graph_values.yml index 2c90f85c06..e3fbdb630a 100644 --- a/datasets/GM1729_gulpen_wittem/graph_values.yml +++ b/datasets/GM1729_gulpen_wittem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1537.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1531117309520375 - :network_gas: 0.15788547976379375 - :ambient_heat: 0.6890027892841688 + :electricity: 0.18518769764267617 + :network_gas: 0.1666541320894584 + :ambient_heat: 0.6481581702678654 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 6866.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 313.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21322022605560695 - :network_gas: 0.14711909577756993 - :ambient_heat: 0.6396606781668231 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1730_tynaarlo/GM1730_tynaarlo.derived.ad b/datasets/GM1730_tynaarlo/GM1730_tynaarlo.derived.ad index ecac0a9ae0..e9d0e9db41 100644 --- a/datasets/GM1730_tynaarlo/GM1730_tynaarlo.derived.ad +++ b/datasets/GM1730_tynaarlo/GM1730_tynaarlo.derived.ad @@ -1,6 +1,6 @@ - area = GM1730_tynaarlo -- id = 128778 -- parent_id = 128778 +- id = 130235 +- parent_id = 130235 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1730_tynaarlo/emissions.csv b/datasets/GM1730_tynaarlo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1730_tynaarlo/emissions.csv +++ b/datasets/GM1730_tynaarlo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1730_tynaarlo/graph_values.yml b/datasets/GM1730_tynaarlo/graph_values.yml index acc834098f..17ae655d43 100644 --- a/datasets/GM1730_tynaarlo/graph_values.yml +++ b/datasets/GM1730_tynaarlo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3920.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15092551627920625 - :network_gas: 0.16990966046436573 - :ambient_heat: 0.6791648232564281 + :electricity: 0.18239884154677222 + :network_gas: 0.17920400302204625 + :ambient_heat: 0.6383971554311815 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14575.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 22.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2103805901464551 - :network_gas: 0.15847763941417747 - :ambient_heat: 0.6311417704393675 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1731_midden_drenthe/GM1731_midden_drenthe.derived.ad b/datasets/GM1731_midden_drenthe/GM1731_midden_drenthe.derived.ad index b59392f199..0ba196a384 100644 --- a/datasets/GM1731_midden_drenthe/GM1731_midden_drenthe.derived.ad +++ b/datasets/GM1731_midden_drenthe/GM1731_midden_drenthe.derived.ad @@ -1,6 +1,6 @@ - area = GM1731_midden_drenthe -- id = 128687 -- parent_id = 128687 +- id = 130144 +- parent_id = 130144 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1731_midden_drenthe/emissions.csv b/datasets/GM1731_midden_drenthe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1731_midden_drenthe/emissions.csv +++ b/datasets/GM1731_midden_drenthe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1731_midden_drenthe/graph_values.yml b/datasets/GM1731_midden_drenthe/graph_values.yml index 343adc7518..de27e68eeb 100644 --- a/datasets/GM1731_midden_drenthe/graph_values.yml +++ b/datasets/GM1731_midden_drenthe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3322.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15256034750968944 - :network_gas: 0.16091808869670804 - :ambient_heat: 0.6865215637936025 + :electricity: 0.18448390547377908 + :network_gas: 0.16982120151838914 + :ambient_heat: 0.6456948930078318 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14395.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 20.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21250456535109524 - :network_gas: 0.14998173859561664 - :ambient_heat: 0.637513696053288 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1734_overbetuwe/GM1734_overbetuwe.derived.ad b/datasets/GM1734_overbetuwe/GM1734_overbetuwe.derived.ad index 799fc247b0..512195917b 100644 --- a/datasets/GM1734_overbetuwe/GM1734_overbetuwe.derived.ad +++ b/datasets/GM1734_overbetuwe/GM1734_overbetuwe.derived.ad @@ -1,6 +1,6 @@ - area = GM1734_overbetuwe -- id = 128723 -- parent_id = 128723 +- id = 130180 +- parent_id = 130180 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1734_overbetuwe/emissions.csv b/datasets/GM1734_overbetuwe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1734_overbetuwe/emissions.csv +++ b/datasets/GM1734_overbetuwe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1734_overbetuwe/graph_values.yml b/datasets/GM1734_overbetuwe/graph_values.yml index 5417034654..f18ff317f8 100644 --- a/datasets/GM1734_overbetuwe/graph_values.yml +++ b/datasets/GM1734_overbetuwe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4017.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15361454067596375 - :network_gas: 0.1551200262821994 - :ambient_heat: 0.6912654330418369 + :electricity: 0.18582973521590757 + :network_gas: 0.1637649587506979 + :ambient_heat: 0.6504053060333946 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20053.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2138725348203516 - :network_gas: 0.1445098607185914 - :ambient_heat: 0.6416176044610571 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1735_hof_van_twente/GM1735_hof_van_twente.derived.ad b/datasets/GM1735_hof_van_twente/GM1735_hof_van_twente.derived.ad index 3287def56e..7c146d5bcf 100644 --- a/datasets/GM1735_hof_van_twente/GM1735_hof_van_twente.derived.ad +++ b/datasets/GM1735_hof_van_twente/GM1735_hof_van_twente.derived.ad @@ -1,6 +1,6 @@ - area = GM1735_hof_van_twente -- id = 128643 -- parent_id = 128643 +- id = 130100 +- parent_id = 130100 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1735_hof_van_twente/emissions.csv b/datasets/GM1735_hof_van_twente/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1735_hof_van_twente/emissions.csv +++ b/datasets/GM1735_hof_van_twente/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1735_hof_van_twente/graph_values.yml b/datasets/GM1735_hof_van_twente/graph_values.yml index ebfb71ccb8..55238f944d 100644 --- a/datasets/GM1735_hof_van_twente/graph_values.yml +++ b/datasets/GM1735_hof_van_twente/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3451.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15222833758962412 - :network_gas: 0.16274414325706743 - :ambient_heat: 0.6850275191533085 + :electricity: 0.18406025994210826 + :network_gas: 0.1717276092213341 + :ambient_heat: 0.6442121308365576 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15251.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 266.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2120734679430009 - :network_gas: 0.15170612822799423 - :ambient_heat: 0.6362204038290049 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1740_neder_betuwe/GM1740_neder_betuwe.derived.ad b/datasets/GM1740_neder_betuwe/GM1740_neder_betuwe.derived.ad index 7635b1a758..42cfa9e22a 100644 --- a/datasets/GM1740_neder_betuwe/GM1740_neder_betuwe.derived.ad +++ b/datasets/GM1740_neder_betuwe/GM1740_neder_betuwe.derived.ad @@ -1,6 +1,6 @@ - area = GM1740_neder_betuwe -- id = 128692 -- parent_id = 128692 +- id = 130149 +- parent_id = 130149 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1740_neder_betuwe/emissions.csv b/datasets/GM1740_neder_betuwe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1740_neder_betuwe/emissions.csv +++ b/datasets/GM1740_neder_betuwe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1740_neder_betuwe/graph_values.yml b/datasets/GM1740_neder_betuwe/graph_values.yml index 4a1565d504..fe33013e3b 100644 --- a/datasets/GM1740_neder_betuwe/graph_values.yml +++ b/datasets/GM1740_neder_betuwe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1705.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1552896437968816 - :network_gas: 0.14590695911715124 - :ambient_heat: 0.6988033970859672 + :electricity: 0.18797036492747501 + :network_gas: 0.15413211084789966 + :ambient_heat: 0.6578975242246253 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8886.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 20.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21604358591220632 - :network_gas: 0.13582565635117233 - :ambient_heat: 0.6481307577366212 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1742_rijssen_holten/GM1742_rijssen_holten.derived.ad b/datasets/GM1742_rijssen_holten/GM1742_rijssen_holten.derived.ad index e5d304bd0e..b2e694788d 100644 --- a/datasets/GM1742_rijssen_holten/GM1742_rijssen_holten.derived.ad +++ b/datasets/GM1742_rijssen_holten/GM1742_rijssen_holten.derived.ad @@ -1,6 +1,6 @@ - area = GM1742_rijssen_holten -- id = 128738 -- parent_id = 128738 +- id = 130195 +- parent_id = 130195 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1742_rijssen_holten/emissions.csv b/datasets/GM1742_rijssen_holten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1742_rijssen_holten/emissions.csv +++ b/datasets/GM1742_rijssen_holten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1742_rijssen_holten/graph_values.yml b/datasets/GM1742_rijssen_holten/graph_values.yml index 06ab618fde..ee30d1c2f0 100644 --- a/datasets/GM1742_rijssen_holten/graph_values.yml +++ b/datasets/GM1742_rijssen_holten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3086.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1531112887443076 - :network_gas: 0.15788791190630816 - :ambient_heat: 0.6890007993493842 + :electricity: 0.18518713309084384 + :network_gas: 0.16665667257644923 + :ambient_heat: 0.648156194332707 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14849.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 37.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21321965223887934 - :network_gas: 0.14712139104448038 - :ambient_heat: 0.6396589567166403 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1771_geldrop_mierlo/GM1771_geldrop_mierlo.derived.ad b/datasets/GM1771_geldrop_mierlo/GM1771_geldrop_mierlo.derived.ad index f9bf6e64e9..1c13a1578d 100644 --- a/datasets/GM1771_geldrop_mierlo/GM1771_geldrop_mierlo.derived.ad +++ b/datasets/GM1771_geldrop_mierlo/GM1771_geldrop_mierlo.derived.ad @@ -1,6 +1,6 @@ - area = GM1771_geldrop_mierlo -- id = 128606 -- parent_id = 128606 +- id = 130063 +- parent_id = 130063 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1771_geldrop_mierlo/emissions.csv b/datasets/GM1771_geldrop_mierlo/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1771_geldrop_mierlo/emissions.csv +++ b/datasets/GM1771_geldrop_mierlo/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1771_geldrop_mierlo/graph_values.yml b/datasets/GM1771_geldrop_mierlo/graph_values.yml index fa7d8795a9..0490859ec3 100644 --- a/datasets/GM1771_geldrop_mierlo/graph_values.yml +++ b/datasets/GM1771_geldrop_mierlo/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3031.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15474296459235082 - :network_gas: 0.1489136947420705 - :ambient_heat: 0.6963433406655787 + :electricity: 0.18727147241797393 + :network_gas: 0.15727713177704444 + :ambient_heat: 0.6554513958049817 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18051.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 167.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2153354071591649 - :network_gas: 0.13865837136333817 - :ambient_heat: 0.646006221477497 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1773_olst_wijhe/GM1773_olst_wijhe.derived.ad b/datasets/GM1773_olst_wijhe/GM1773_olst_wijhe.derived.ad index d677e42094..eb084b34ba 100644 --- a/datasets/GM1773_olst_wijhe/GM1773_olst_wijhe.derived.ad +++ b/datasets/GM1773_olst_wijhe/GM1773_olst_wijhe.derived.ad @@ -1,6 +1,6 @@ - area = GM1773_olst_wijhe -- id = 128711 -- parent_id = 128711 +- id = 130168 +- parent_id = 130168 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1773_olst_wijhe/emissions.csv b/datasets/GM1773_olst_wijhe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1773_olst_wijhe/emissions.csv +++ b/datasets/GM1773_olst_wijhe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1773_olst_wijhe/graph_values.yml b/datasets/GM1773_olst_wijhe/graph_values.yml index e572840773..f1d43f29ce 100644 --- a/datasets/GM1773_olst_wijhe/graph_values.yml +++ b/datasets/GM1773_olst_wijhe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1146.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15411188391021308 - :network_gas: 0.1523846384938281 - :ambient_heat: 0.6935034775959588 + :electricity: 0.1864650231027872 + :network_gas: 0.16090615904529668 + :ambient_heat: 0.6526288178519161 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7821.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 88.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21451746448388617 - :network_gas: 0.14193014206445304 - :ambient_heat: 0.6435523934516608 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1774_dinkelland/GM1774_dinkelland.derived.ad b/datasets/GM1774_dinkelland/GM1774_dinkelland.derived.ad index 815f03490d..cd8ec9dd9b 100644 --- a/datasets/GM1774_dinkelland/GM1774_dinkelland.derived.ad +++ b/datasets/GM1774_dinkelland/GM1774_dinkelland.derived.ad @@ -1,6 +1,6 @@ - area = GM1774_dinkelland -- id = 128581 -- parent_id = 128581 +- id = 130038 +- parent_id = 130038 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1774_dinkelland/emissions.csv b/datasets/GM1774_dinkelland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1774_dinkelland/emissions.csv +++ b/datasets/GM1774_dinkelland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1774_dinkelland/graph_values.yml b/datasets/GM1774_dinkelland/graph_values.yml index f008468488..625e08957a 100644 --- a/datasets/GM1774_dinkelland/graph_values.yml +++ b/datasets/GM1774_dinkelland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3197.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1538583572153983 - :network_gas: 0.15377903531530931 - :ambient_heat: 0.6923626074692923 + :electricity: 0.1861411488138979 + :network_gas: 0.16236359549385165 + :ambient_heat: 0.6514952556922505 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11038.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 55.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.214188739519476 - :network_gas: 0.14324504192209359 - :ambient_heat: 0.6425662185584303 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1783_westland/GM1783_westland.derived.ad b/datasets/GM1783_westland/GM1783_westland.derived.ad index bb620f7c65..8c6847a0fd 100644 --- a/datasets/GM1783_westland/GM1783_westland.derived.ad +++ b/datasets/GM1783_westland/GM1783_westland.derived.ad @@ -1,6 +1,6 @@ - area = GM1783_westland -- id = 128812 -- parent_id = 128812 +- id = 130269 +- parent_id = 130269 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1783_westland/emissions.csv b/datasets/GM1783_westland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1783_westland/emissions.csv +++ b/datasets/GM1783_westland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1783_westland/graph_values.yml b/datasets/GM1783_westland/graph_values.yml index f5a264729e..0be883fea8 100644 --- a/datasets/GM1783_westland/graph_values.yml +++ b/datasets/GM1783_westland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 9269.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15722703800209592 - :network_gas: 0.13525129098847252 - :ambient_heat: 0.7075216710094316 + :electricity: 0.19044942788302854 + :network_gas: 0.1429763111020284 + :ambient_heat: 0.666574261014943 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 45912.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1775.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21855055210599425 - :network_gas: 0.12579779157602058 - :ambient_heat: 0.6556516563179852 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1842_midden_delfland/GM1842_midden_delfland.derived.ad b/datasets/GM1842_midden_delfland/GM1842_midden_delfland.derived.ad index 312c6da74a..ff9df170f3 100644 --- a/datasets/GM1842_midden_delfland/GM1842_midden_delfland.derived.ad +++ b/datasets/GM1842_midden_delfland/GM1842_midden_delfland.derived.ad @@ -1,6 +1,6 @@ - area = GM1842_midden_delfland -- id = 128686 -- parent_id = 128686 +- id = 130143 +- parent_id = 130143 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1842_midden_delfland/emissions.csv b/datasets/GM1842_midden_delfland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1842_midden_delfland/emissions.csv +++ b/datasets/GM1842_midden_delfland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1842_midden_delfland/graph_values.yml b/datasets/GM1842_midden_delfland/graph_values.yml index 4b0f292841..bf86cb85b9 100644 --- a/datasets/GM1842_midden_delfland/graph_values.yml +++ b/datasets/GM1842_midden_delfland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1157.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15744467093425527 - :network_gas: 0.13405430986159603 - :ambient_heat: 0.7085010192041487 + :electricity: 0.19072812601514091 + :network_gas: 0.14172216765866458 + :ambient_heat: 0.6675497063261945 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 7978.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 273.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2188318968916586 - :network_gas: 0.12467241243336327 - :ambient_heat: 0.6564956906749781 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1859_berkelland/GM1859_berkelland.derived.ad b/datasets/GM1859_berkelland/GM1859_berkelland.derived.ad index 643e43411f..8ac282e008 100644 --- a/datasets/GM1859_berkelland/GM1859_berkelland.derived.ad +++ b/datasets/GM1859_berkelland/GM1859_berkelland.derived.ad @@ -1,6 +1,6 @@ - area = GM1859_berkelland -- id = 128543 -- parent_id = 128543 +- id = 130000 +- parent_id = 130000 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1859_berkelland/emissions.csv b/datasets/GM1859_berkelland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1859_berkelland/emissions.csv +++ b/datasets/GM1859_berkelland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1859_berkelland/graph_values.yml b/datasets/GM1859_berkelland/graph_values.yml index 619b7464ea..65138bc62e 100644 --- a/datasets/GM1859_berkelland/graph_values.yml +++ b/datasets/GM1859_berkelland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3522.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1516340145816958 - :network_gas: 0.16601291980067318 - :ambient_heat: 0.6823530656176311 + :electricity: 0.1833021568976231 + :network_gas: 0.1751390779507045 + :ambient_heat: 0.6415587651516723 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 19547.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 86.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21130145221495358 - :network_gas: 0.15479419114018333 - :ambient_heat: 0.633904356644863 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1876_bronckhorst/GM1876_bronckhorst.derived.ad b/datasets/GM1876_bronckhorst/GM1876_bronckhorst.derived.ad index c997de3715..87f04ee6b6 100644 --- a/datasets/GM1876_bronckhorst/GM1876_bronckhorst.derived.ad +++ b/datasets/GM1876_bronckhorst/GM1876_bronckhorst.derived.ad @@ -1,6 +1,6 @@ - area = GM1876_bronckhorst -- id = 128558 -- parent_id = 128558 +- id = 130015 +- parent_id = 130015 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1876_bronckhorst/emissions.csv b/datasets/GM1876_bronckhorst/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1876_bronckhorst/emissions.csv +++ b/datasets/GM1876_bronckhorst/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1876_bronckhorst/graph_values.yml b/datasets/GM1876_bronckhorst/graph_values.yml index c725b7ee90..9a3bb5852e 100644 --- a/datasets/GM1876_bronckhorst/graph_values.yml +++ b/datasets/GM1876_bronckhorst/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2734.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15360224167357064 - :network_gas: 0.15518767079536144 - :ambient_heat: 0.6912100875310679 + :electricity: 0.18581402782904852 + :network_gas: 0.16383564209576473 + :ambient_heat: 0.6503503300751867 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16139.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 66.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21385658247411116 - :network_gas: 0.14457367010355313 - :ambient_heat: 0.6415697474223357 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1883_sittard_geleen/GM1883_sittard_geleen.derived.ad b/datasets/GM1883_sittard_geleen/GM1883_sittard_geleen.derived.ad index 798d0a8d5a..93b883774a 100644 --- a/datasets/GM1883_sittard_geleen/GM1883_sittard_geleen.derived.ad +++ b/datasets/GM1883_sittard_geleen/GM1883_sittard_geleen.derived.ad @@ -1,6 +1,6 @@ - area = GM1883_sittard_geleen -- id = 128754 -- parent_id = 128754 +- id = 130211 +- parent_id = 130211 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1883_sittard_geleen/emissions.csv b/datasets/GM1883_sittard_geleen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1883_sittard_geleen/emissions.csv +++ b/datasets/GM1883_sittard_geleen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1883_sittard_geleen/graph_values.yml b/datasets/GM1883_sittard_geleen/graph_values.yml index f4c9592683..3d51effded 100644 --- a/datasets/GM1883_sittard_geleen/graph_values.yml +++ b/datasets/GM1883_sittard_geleen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 16157.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15552508110940744 - :network_gas: 0.1446120538982594 - :ambient_heat: 0.6998628649923334 + :electricity: 0.18827144112468305 + :network_gas: 0.1527772659631511 + :ambient_heat: 0.6589512929121658 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 46679.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1935.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21634846981075945 - :network_gas: 0.13460612075695985 - :ambient_heat: 0.6490454094322807 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1884_kaag_en_braassem/GM1884_kaag_en_braassem.derived.ad b/datasets/GM1884_kaag_en_braassem/GM1884_kaag_en_braassem.derived.ad index 001acce754..1e89052565 100644 --- a/datasets/GM1884_kaag_en_braassem/GM1884_kaag_en_braassem.derived.ad +++ b/datasets/GM1884_kaag_en_braassem/GM1884_kaag_en_braassem.derived.ad @@ -1,6 +1,6 @@ - area = GM1884_kaag_en_braassem -- id = 128652 -- parent_id = 128652 +- id = 130109 +- parent_id = 130109 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1884_kaag_en_braassem/emissions.csv b/datasets/GM1884_kaag_en_braassem/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1884_kaag_en_braassem/emissions.csv +++ b/datasets/GM1884_kaag_en_braassem/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1884_kaag_en_braassem/graph_values.yml b/datasets/GM1884_kaag_en_braassem/graph_values.yml index 91581933f2..2723442820 100644 --- a/datasets/GM1884_kaag_en_braassem/graph_values.yml +++ b/datasets/GM1884_kaag_en_braassem/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1969.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15757603221534028 - :network_gas: 0.13333182281562841 - :ambient_heat: 0.7090921449690313 + :electricity: 0.190896367031392 + :network_gas: 0.14096508196943897 + :ambient_heat: 0.6681385509991691 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11874.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 65.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2190016877322112 - :network_gas: 0.12399324907115274 - :ambient_heat: 0.657005063196636 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1891_dantumadiel/GM1891_dantumadiel.derived.ad b/datasets/GM1891_dantumadiel/GM1891_dantumadiel.derived.ad index d338989450..caf720046d 100644 --- a/datasets/GM1891_dantumadiel/GM1891_dantumadiel.derived.ad +++ b/datasets/GM1891_dantumadiel/GM1891_dantumadiel.derived.ad @@ -1,6 +1,6 @@ - area = GM1891_dantumadiel -- id = 128570 -- parent_id = 128570 +- id = 130027 +- parent_id = 130027 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1891_dantumadiel/emissions.csv b/datasets/GM1891_dantumadiel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1891_dantumadiel/emissions.csv +++ b/datasets/GM1891_dantumadiel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1891_dantumadiel/graph_values.yml b/datasets/GM1891_dantumadiel/graph_values.yml index 7c70ccec4e..41314271d4 100644 --- a/datasets/GM1891_dantumadiel/graph_values.yml +++ b/datasets/GM1891_dantumadiel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1158.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15216849750814546 - :network_gas: 0.16307326370519998 - :ambient_heat: 0.6847582387866545 + :electricity: 0.1839839146898632 + :network_gas: 0.17207116336290446 + :ambient_heat: 0.6439449219472324 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8148.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 8.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21199575518091068 - :network_gas: 0.15201697927635513 - :ambient_heat: 0.6359872655427343 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1892_zuidplas/GM1892_zuidplas.derived.ad b/datasets/GM1892_zuidplas/GM1892_zuidplas.derived.ad index 5f0bf7b120..7726b11f38 100644 --- a/datasets/GM1892_zuidplas/GM1892_zuidplas.derived.ad +++ b/datasets/GM1892_zuidplas/GM1892_zuidplas.derived.ad @@ -1,6 +1,6 @@ - area = GM1892_zuidplas -- id = 128831 -- parent_id = 128831 +- id = 130288 +- parent_id = 130288 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1892_zuidplas/emissions.csv b/datasets/GM1892_zuidplas/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1892_zuidplas/emissions.csv +++ b/datasets/GM1892_zuidplas/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1892_zuidplas/graph_values.yml b/datasets/GM1892_zuidplas/graph_values.yml index 9fc151963b..44af33c6d7 100644 --- a/datasets/GM1892_zuidplas/graph_values.yml +++ b/datasets/GM1892_zuidplas/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2882.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1582141942177268 - :network_gas: 0.12982193180250257 - :ambient_heat: 0.7119638739797707 + :electricity: 0.1917139218475371 + :network_gas: 0.13728607987320088 + :ambient_heat: 0.670999998279262 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18549.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 123.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2198262610833705 - :network_gas: 0.12069495566651563 - :ambient_heat: 0.6594787832501138 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1894_peel_en_maas/GM1894_peel_en_maas.derived.ad b/datasets/GM1894_peel_en_maas/GM1894_peel_en_maas.derived.ad index b72ae18bb2..65abd11b08 100644 --- a/datasets/GM1894_peel_en_maas/GM1894_peel_en_maas.derived.ad +++ b/datasets/GM1894_peel_en_maas/GM1894_peel_en_maas.derived.ad @@ -1,6 +1,6 @@ - area = GM1894_peel_en_maas -- id = 128725 -- parent_id = 128725 +- id = 130182 +- parent_id = 130182 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1894_peel_en_maas/emissions.csv b/datasets/GM1894_peel_en_maas/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1894_peel_en_maas/emissions.csv +++ b/datasets/GM1894_peel_en_maas/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1894_peel_en_maas/graph_values.yml b/datasets/GM1894_peel_en_maas/graph_values.yml index bc57ab95b8..858e414806 100644 --- a/datasets/GM1894_peel_en_maas/graph_values.yml +++ b/datasets/GM1894_peel_en_maas/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3735.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15738509861512062 - :network_gas: 0.13438195761683658 - :ambient_heat: 0.7082329437680428 + :electricity: 0.19065183403457373 + :network_gas: 0.14206548207733075 + :ambient_heat: 0.6672826838880953 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18491.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 82.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21875489023836897 - :network_gas: 0.12498043904652181 - :ambient_heat: 0.6562646707151093 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1895_oldambt/GM1895_oldambt.derived.ad b/datasets/GM1895_oldambt/GM1895_oldambt.derived.ad index ce8b663a2e..82afe1fb8d 100644 --- a/datasets/GM1895_oldambt/GM1895_oldambt.derived.ad +++ b/datasets/GM1895_oldambt/GM1895_oldambt.derived.ad @@ -1,6 +1,6 @@ - area = GM1895_oldambt -- id = 128708 -- parent_id = 128708 +- id = 130165 +- parent_id = 130165 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1895_oldambt/emissions.csv b/datasets/GM1895_oldambt/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1895_oldambt/emissions.csv +++ b/datasets/GM1895_oldambt/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1895_oldambt/graph_values.yml b/datasets/GM1895_oldambt/graph_values.yml index 26c7d90f70..e7415b169a 100644 --- a/datasets/GM1895_oldambt/graph_values.yml +++ b/datasets/GM1895_oldambt/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3360.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1508640545846111 - :network_gas: 0.17024769978463902 - :ambient_heat: 0.6788882456307499 + :electricity: 0.18232050148745227 + :network_gas: 0.17955653380868702 + :ambient_heat: 0.6381229647038608 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 18399.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 325.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2103006786340039 - :network_gas: 0.15879728546398225 - :ambient_heat: 0.6309020359020139 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1896_zwartewaterland/GM1896_zwartewaterland.derived.ad b/datasets/GM1896_zwartewaterland/GM1896_zwartewaterland.derived.ad index 3bc9093eb5..42f215b21e 100644 --- a/datasets/GM1896_zwartewaterland/GM1896_zwartewaterland.derived.ad +++ b/datasets/GM1896_zwartewaterland/GM1896_zwartewaterland.derived.ad @@ -1,6 +1,6 @@ - area = GM1896_zwartewaterland -- id = 128834 -- parent_id = 128834 +- id = 130291 +- parent_id = 130291 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1896_zwartewaterland/emissions.csv b/datasets/GM1896_zwartewaterland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1896_zwartewaterland/emissions.csv +++ b/datasets/GM1896_zwartewaterland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1896_zwartewaterland/graph_values.yml b/datasets/GM1896_zwartewaterland/graph_values.yml index 476c6553bd..b55f9548d6 100644 --- a/datasets/GM1896_zwartewaterland/graph_values.yml +++ b/datasets/GM1896_zwartewaterland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 1963.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15454358818885208 - :network_gas: 0.15001026496131342 - :ambient_heat: 0.6954461468498344 + :electricity: 0.1870166521396893 + :network_gas: 0.15842382471978003 + :ambient_heat: 0.6545595231405307 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 8961.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 505.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21507704536994227 - :network_gas: 0.1396918185202286 - :ambient_heat: 0.6452311361098292 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1900_sudwest_fryslan/GM1900_sudwest_fryslan.derived.ad b/datasets/GM1900_sudwest_fryslan/GM1900_sudwest_fryslan.derived.ad index 91742cb442..0bda0e775c 100644 --- a/datasets/GM1900_sudwest_fryslan/GM1900_sudwest_fryslan.derived.ad +++ b/datasets/GM1900_sudwest_fryslan/GM1900_sudwest_fryslan.derived.ad @@ -1,6 +1,6 @@ - area = GM1900_sudwest_fryslan -- id = 128768 -- parent_id = 128768 +- id = 130225 +- parent_id = 130225 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1900_sudwest_fryslan/emissions.csv b/datasets/GM1900_sudwest_fryslan/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1900_sudwest_fryslan/emissions.csv +++ b/datasets/GM1900_sudwest_fryslan/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1900_sudwest_fryslan/graph_values.yml b/datasets/GM1900_sudwest_fryslan/graph_values.yml index 2a8cbd5121..e20ee215e8 100644 --- a/datasets/GM1900_sudwest_fryslan/graph_values.yml +++ b/datasets/GM1900_sudwest_fryslan/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 9325.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15198613737912395 - :network_gas: 0.16407624441481838 - :ambient_heat: 0.6839376182060577 + :electricity: 0.18375127617925294 + :network_gas: 0.17311803820395352 + :ambient_heat: 0.6431306856167935 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 42025.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 2651.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2117589032513061 - :network_gas: 0.1529643869947733 - :ambient_heat: 0.6352767097539206 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1901_bodegraven_reeuwijk/GM1901_bodegraven_reeuwijk.derived.ad b/datasets/GM1901_bodegraven_reeuwijk/GM1901_bodegraven_reeuwijk.derived.ad index a3902a701f..a34ada2ea4 100644 --- a/datasets/GM1901_bodegraven_reeuwijk/GM1901_bodegraven_reeuwijk.derived.ad +++ b/datasets/GM1901_bodegraven_reeuwijk/GM1901_bodegraven_reeuwijk.derived.ad @@ -1,6 +1,6 @@ - area = GM1901_bodegraven_reeuwijk -- id = 128551 -- parent_id = 128551 +- id = 130008 +- parent_id = 130008 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1901_bodegraven_reeuwijk/emissions.csv b/datasets/GM1901_bodegraven_reeuwijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1901_bodegraven_reeuwijk/emissions.csv +++ b/datasets/GM1901_bodegraven_reeuwijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1901_bodegraven_reeuwijk/graph_values.yml b/datasets/GM1901_bodegraven_reeuwijk/graph_values.yml index dbd76205d8..137b52899e 100644 --- a/datasets/GM1901_bodegraven_reeuwijk/graph_values.yml +++ b/datasets/GM1901_bodegraven_reeuwijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2793.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15695232840274473 - :network_gas: 0.13676219378490398 - :ambient_heat: 0.7062854778123513 + :electricity: 0.1900977009656933 + :network_gas: 0.14455908456336167 + :ambient_heat: 0.665343214470945 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 14665.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 367.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2181953437701272 - :network_gas: 0.12721862491948896 - :ambient_heat: 0.6545860313103838 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1903_eijsden_margraten/GM1903_eijsden_margraten.derived.ad b/datasets/GM1903_eijsden_margraten/GM1903_eijsden_margraten.derived.ad index 4bc0bc1308..ade38096dc 100644 --- a/datasets/GM1903_eijsden_margraten/GM1903_eijsden_margraten.derived.ad +++ b/datasets/GM1903_eijsden_margraten/GM1903_eijsden_margraten.derived.ad @@ -1,6 +1,6 @@ - area = GM1903_eijsden_margraten -- id = 128596 -- parent_id = 128596 +- id = 130053 +- parent_id = 130053 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1903_eijsden_margraten/emissions.csv b/datasets/GM1903_eijsden_margraten/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1903_eijsden_margraten/emissions.csv +++ b/datasets/GM1903_eijsden_margraten/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1903_eijsden_margraten/graph_values.yml b/datasets/GM1903_eijsden_margraten/graph_values.yml index 984ba7de72..9ad3f853ce 100644 --- a/datasets/GM1903_eijsden_margraten/graph_values.yml +++ b/datasets/GM1903_eijsden_margraten/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2679.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15425998892169754 - :network_gas: 0.1515700609306635 - :ambient_heat: 0.6941699501476389 + :electricity: 0.18665425128753071 + :network_gas: 0.1600546309586284 + :ambient_heat: 0.653291117753841 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11342.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 420.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21470946442491826 - :network_gas: 0.14116214230032453 - :ambient_heat: 0.6441283932747571 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1904_stichtse_vecht/GM1904_stichtse_vecht.derived.ad b/datasets/GM1904_stichtse_vecht/GM1904_stichtse_vecht.derived.ad index e4d1607955..93a9560fcf 100644 --- a/datasets/GM1904_stichtse_vecht/GM1904_stichtse_vecht.derived.ad +++ b/datasets/GM1904_stichtse_vecht/GM1904_stichtse_vecht.derived.ad @@ -1,6 +1,6 @@ - area = GM1904_stichtse_vecht -- id = 128767 -- parent_id = 128767 +- id = 130224 +- parent_id = 130224 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1904_stichtse_vecht/emissions.csv b/datasets/GM1904_stichtse_vecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1904_stichtse_vecht/emissions.csv +++ b/datasets/GM1904_stichtse_vecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1904_stichtse_vecht/graph_values.yml b/datasets/GM1904_stichtse_vecht/graph_values.yml index c5b12bfa5e..ebd36ddeea 100644 --- a/datasets/GM1904_stichtse_vecht/graph_values.yml +++ b/datasets/GM1904_stichtse_vecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4426.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1542273186907 - :network_gas: 0.15174974720115 - :ambient_heat: 0.69402293410815 + :electricity: 0.18661250801763832 + :network_gas: 0.16024247595006516 + :ambient_heat: 0.6531450160322966 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 28716.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 851.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21466711366286403 - :network_gas: 0.14133154534854167 - :ambient_heat: 0.6440013409885944 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1911_hollands_kroon/GM1911_hollands_kroon.derived.ad b/datasets/GM1911_hollands_kroon/GM1911_hollands_kroon.derived.ad index e57b103013..cdbdb8abc9 100644 --- a/datasets/GM1911_hollands_kroon/GM1911_hollands_kroon.derived.ad +++ b/datasets/GM1911_hollands_kroon/GM1911_hollands_kroon.derived.ad @@ -1,6 +1,6 @@ - area = GM1911_hollands_kroon -- id = 128644 -- parent_id = 128644 +- id = 130101 +- parent_id = 130101 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1911_hollands_kroon/emissions.csv b/datasets/GM1911_hollands_kroon/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1911_hollands_kroon/emissions.csv +++ b/datasets/GM1911_hollands_kroon/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1911_hollands_kroon/graph_values.yml b/datasets/GM1911_hollands_kroon/graph_values.yml index ba320893ed..6f06d57e1f 100644 --- a/datasets/GM1911_hollands_kroon/graph_values.yml +++ b/datasets/GM1911_hollands_kroon/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3288.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15459325539243124 - :network_gas: 0.1497370953416281 - :ambient_heat: 0.6956696492659405 + :electricity: 0.1870801276702184 + :network_gas: 0.15813818441130828 + :ambient_heat: 0.6547816879184734 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20923.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 247.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2151414108734974 - :network_gas: 0.13943435650600808 - :ambient_heat: 0.6454242326204944 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1916_leidschendam_voorburg/GM1916_leidschendam_voorburg.derived.ad b/datasets/GM1916_leidschendam_voorburg/GM1916_leidschendam_voorburg.derived.ad index 53eb155dde..e75721e8c0 100644 --- a/datasets/GM1916_leidschendam_voorburg/GM1916_leidschendam_voorburg.derived.ad +++ b/datasets/GM1916_leidschendam_voorburg/GM1916_leidschendam_voorburg.derived.ad @@ -1,6 +1,6 @@ - area = GM1916_leidschendam_voorburg -- id = 128668 -- parent_id = 128668 +- id = 130125 +- parent_id = 130125 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1916_leidschendam_voorburg/emissions.csv b/datasets/GM1916_leidschendam_voorburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1916_leidschendam_voorburg/emissions.csv +++ b/datasets/GM1916_leidschendam_voorburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1916_leidschendam_voorburg/graph_values.yml b/datasets/GM1916_leidschendam_voorburg/graph_values.yml index 544116f88b..cff074013c 100644 --- a/datasets/GM1916_leidschendam_voorburg/graph_values.yml +++ b/datasets/GM1916_leidschendam_voorburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5985.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15062395664698178 - :network_gas: 0.17156823844160024 - :ambient_heat: 0.677807804911418 + :electricity: 0.18201450225959626 + :network_gas: 0.1809335323640105 + :ambient_heat: 0.6370519653763934 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 36938.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3154.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20998846516229136 - :network_gas: 0.16004613935083237 - :ambient_heat: 0.6299653954868764 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1924_goeree_overflakkee/GM1924_goeree_overflakkee.derived.ad b/datasets/GM1924_goeree_overflakkee/GM1924_goeree_overflakkee.derived.ad index 564e2d2d5a..f8f6c932c4 100644 --- a/datasets/GM1924_goeree_overflakkee/GM1924_goeree_overflakkee.derived.ad +++ b/datasets/GM1924_goeree_overflakkee/GM1924_goeree_overflakkee.derived.ad @@ -1,6 +1,6 @@ - area = GM1924_goeree_overflakkee -- id = 128610 -- parent_id = 128610 +- id = 130067 +- parent_id = 130067 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1924_goeree_overflakkee/emissions.csv b/datasets/GM1924_goeree_overflakkee/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1924_goeree_overflakkee/emissions.csv +++ b/datasets/GM1924_goeree_overflakkee/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1924_goeree_overflakkee/graph_values.yml b/datasets/GM1924_goeree_overflakkee/graph_values.yml index ceeafc48d8..08a30a632e 100644 --- a/datasets/GM1924_goeree_overflakkee/graph_values.yml +++ b/datasets/GM1924_goeree_overflakkee/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6955.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15561866472220875 - :network_gas: 0.14409734402785196 - :ambient_heat: 0.7002839912499393 + :electricity: 0.18839112973169952 + :network_gas: 0.15223866643757336 + :ambient_heat: 0.659370203830727 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22021.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1305.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21646963990099985 - :network_gas: 0.1341214403959981 - :ambient_heat: 0.649408919703002 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1926_pijnacker_nootdorp/GM1926_pijnacker_nootdorp.derived.ad b/datasets/GM1926_pijnacker_nootdorp/GM1926_pijnacker_nootdorp.derived.ad index eb8f6969ed..6b9a6fe361 100644 --- a/datasets/GM1926_pijnacker_nootdorp/GM1926_pijnacker_nootdorp.derived.ad +++ b/datasets/GM1926_pijnacker_nootdorp/GM1926_pijnacker_nootdorp.derived.ad @@ -1,6 +1,6 @@ - area = GM1926_pijnacker_nootdorp -- id = 128727 -- parent_id = 128727 +- id = 130184 +- parent_id = 130184 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1926_pijnacker_nootdorp/emissions.csv b/datasets/GM1926_pijnacker_nootdorp/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1926_pijnacker_nootdorp/emissions.csv +++ b/datasets/GM1926_pijnacker_nootdorp/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1926_pijnacker_nootdorp/graph_values.yml b/datasets/GM1926_pijnacker_nootdorp/graph_values.yml index 2551a6e85f..678f4907fd 100644 --- a/datasets/GM1926_pijnacker_nootdorp/graph_values.yml +++ b/datasets/GM1926_pijnacker_nootdorp/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3308.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1621740730024119 - :network_gas: 0.10804259848673482 - :ambient_heat: 0.7297833285108535 + :electricity: 0.19679544545795846 + :network_gas: 0.11441918991593505 + :ambient_heat: 0.6887853646261064 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21791.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 406.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22493241096272515 - :network_gas: 0.10027035614909699 - :ambient_heat: 0.6747972328881778 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1930_nissewaard/GM1930_nissewaard.derived.ad b/datasets/GM1930_nissewaard/GM1930_nissewaard.derived.ad index dfe694cfff..a37877401a 100644 --- a/datasets/GM1930_nissewaard/GM1930_nissewaard.derived.ad +++ b/datasets/GM1930_nissewaard/GM1930_nissewaard.derived.ad @@ -1,6 +1,6 @@ - area = GM1930_nissewaard -- id = 128698 -- parent_id = 128698 +- id = 130155 +- parent_id = 130155 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1930_nissewaard/emissions.csv b/datasets/GM1930_nissewaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1930_nissewaard/emissions.csv +++ b/datasets/GM1930_nissewaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1930_nissewaard/graph_values.yml b/datasets/GM1930_nissewaard/graph_values.yml index 4ff7e56d6e..03867350b4 100644 --- a/datasets/GM1930_nissewaard/graph_values.yml +++ b/datasets/GM1930_nissewaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6466.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1585135571852412 - :network_gas: 0.1281754354811734 - :ambient_heat: 0.7133110073335853 + :electricity: 0.19209756899100724 + :network_gas: 0.1355596651825047 + :ambient_heat: 0.672342765826488 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 39448.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 128.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22021290883497638 - :network_gas: 0.11914836466009204 - :ambient_heat: 0.6606387265049316 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1931_krimpenerwaard/GM1931_krimpenerwaard.derived.ad b/datasets/GM1931_krimpenerwaard/GM1931_krimpenerwaard.derived.ad index 86894a5ca7..e0be2fe604 100644 --- a/datasets/GM1931_krimpenerwaard/GM1931_krimpenerwaard.derived.ad +++ b/datasets/GM1931_krimpenerwaard/GM1931_krimpenerwaard.derived.ad @@ -1,6 +1,6 @@ - area = GM1931_krimpenerwaard -- id = 128659 -- parent_id = 128659 +- id = 130116 +- parent_id = 130116 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1931_krimpenerwaard/emissions.csv b/datasets/GM1931_krimpenerwaard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1931_krimpenerwaard/emissions.csv +++ b/datasets/GM1931_krimpenerwaard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1931_krimpenerwaard/graph_values.yml b/datasets/GM1931_krimpenerwaard/graph_values.yml index 20fbb9e9e4..a125cdb4bb 100644 --- a/datasets/GM1931_krimpenerwaard/graph_values.yml +++ b/datasets/GM1931_krimpenerwaard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3631.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15518718202181608 - :network_gas: 0.14647049888001146 - :ambient_heat: 0.6983423190981723 + :electricity: 0.18783935333288465 + :network_gas: 0.1547216638926754 + :ambient_heat: 0.65743898277444 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23909.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 830.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21591088119394566 - :network_gas: 0.13635647522421504 - :ambient_heat: 0.6477326435818394 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1940_de_fryske_marren/GM1940_de_fryske_marren.derived.ad b/datasets/GM1940_de_fryske_marren/GM1940_de_fryske_marren.derived.ad index 622d328fa6..f7fd3c2124 100644 --- a/datasets/GM1940_de_fryske_marren/GM1940_de_fryske_marren.derived.ad +++ b/datasets/GM1940_de_fryske_marren/GM1940_de_fryske_marren.derived.ad @@ -1,6 +1,6 @@ - area = GM1940_de_fryske_marren -- id = 128572 -- parent_id = 128572 +- id = 130029 +- parent_id = 130029 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1940_de_fryske_marren/emissions.csv b/datasets/GM1940_de_fryske_marren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1940_de_fryske_marren/emissions.csv +++ b/datasets/GM1940_de_fryske_marren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1940_de_fryske_marren/graph_values.yml b/datasets/GM1940_de_fryske_marren/graph_values.yml index c29164f855..9cf58dbc71 100644 --- a/datasets/GM1940_de_fryske_marren/graph_values.yml +++ b/datasets/GM1940_de_fryske_marren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5704.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15209536512095606 - :network_gas: 0.16347549183474175 - :ambient_heat: 0.6844291430443022 + :electricity: 0.18389061532915132 + :network_gas: 0.17249101110504744 + :ambient_heat: 0.6436183735658013 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 23318.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 364.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2119007744189425 - :network_gas: 0.15239690232422765 - :ambient_heat: 0.6357023232568298 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1942_gooise_meren/GM1942_gooise_meren.derived.ad b/datasets/GM1942_gooise_meren/GM1942_gooise_meren.derived.ad index 312a5e3754..7dbfb2426c 100644 --- a/datasets/GM1942_gooise_meren/GM1942_gooise_meren.derived.ad +++ b/datasets/GM1942_gooise_meren/GM1942_gooise_meren.derived.ad @@ -1,6 +1,6 @@ - area = GM1942_gooise_meren -- id = 128613 -- parent_id = 128613 +- id = 130070 +- parent_id = 130070 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1942_gooise_meren/emissions.csv b/datasets/GM1942_gooise_meren/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1942_gooise_meren/emissions.csv +++ b/datasets/GM1942_gooise_meren/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1942_gooise_meren/graph_values.yml b/datasets/GM1942_gooise_meren/graph_values.yml index 1aaa716eb2..67d4c556d6 100644 --- a/datasets/GM1942_gooise_meren/graph_values.yml +++ b/datasets/GM1942_gooise_meren/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6396.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1495224345598031 - :network_gas: 0.177626609921083 - :ambient_heat: 0.6728509555191139 + :electricity: 0.18061132031641833 + :network_gas: 0.18724786041689342 + :ambient_heat: 0.6321408192666882 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 26873.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 3613.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2085552339617661 - :network_gas: 0.1657790641529336 - :ambient_heat: 0.6256657018853005 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1945_berg_en_dal/GM1945_berg_en_dal.derived.ad b/datasets/GM1945_berg_en_dal/GM1945_berg_en_dal.derived.ad index 6d132c07f5..def9318975 100644 --- a/datasets/GM1945_berg_en_dal/GM1945_berg_en_dal.derived.ad +++ b/datasets/GM1945_berg_en_dal/GM1945_berg_en_dal.derived.ad @@ -1,6 +1,6 @@ - area = GM1945_berg_en_dal -- id = 128538 -- parent_id = 128538 +- id = 129995 +- parent_id = 129995 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1945_berg_en_dal/emissions.csv b/datasets/GM1945_berg_en_dal/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1945_berg_en_dal/emissions.csv +++ b/datasets/GM1945_berg_en_dal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1945_berg_en_dal/graph_values.yml b/datasets/GM1945_berg_en_dal/graph_values.yml index 10cb6c5233..6f389c5bff 100644 --- a/datasets/GM1945_berg_en_dal/graph_values.yml +++ b/datasets/GM1945_berg_en_dal/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3849.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1543976173034571 - :network_gas: 0.15081310483098578 - :ambient_heat: 0.694789277865557 + :electricity: 0.18683011211128137 + :network_gas: 0.1592632560851055 + :ambient_heat: 0.6539066318036132 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15815.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 88.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21488786001148832 - :network_gas: 0.14044855995404432 - :ambient_heat: 0.6446635800344673 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1948_meierijstad/GM1948_meierijstad.derived.ad b/datasets/GM1948_meierijstad/GM1948_meierijstad.derived.ad index 87e5aa1556..0785049e94 100644 --- a/datasets/GM1948_meierijstad/GM1948_meierijstad.derived.ad +++ b/datasets/GM1948_meierijstad/GM1948_meierijstad.derived.ad @@ -1,6 +1,6 @@ - area = GM1948_meierijstad -- id = 128837 -- parent_id = 128837 +- id = 130294 +- parent_id = 130294 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1948_meierijstad/emissions.csv b/datasets/GM1948_meierijstad/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1948_meierijstad/emissions.csv +++ b/datasets/GM1948_meierijstad/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1948_meierijstad/graph_values.yml b/datasets/GM1948_meierijstad/graph_values.yml index 62d7087323..620770651e 100644 --- a/datasets/GM1948_meierijstad/graph_values.yml +++ b/datasets/GM1948_meierijstad/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6741.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1567666084100448 - :network_gas: 0.1377836537447536 - :ambient_heat: 0.7054497378452016 + :electricity: 0.18985995246119922 + :network_gas: 0.14562895441078724 + :ambient_heat: 0.6645110931280135 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 34829.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 245.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2179551526904395 - :network_gas: 0.12817938923823968 - :ambient_heat: 0.6538654580713208 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1949_waadhoeke/GM1949_waadhoeke.derived.ad b/datasets/GM1949_waadhoeke/GM1949_waadhoeke.derived.ad index 4d60fc1dfd..cd810cae73 100644 --- a/datasets/GM1949_waadhoeke/GM1949_waadhoeke.derived.ad +++ b/datasets/GM1949_waadhoeke/GM1949_waadhoeke.derived.ad @@ -1,6 +1,6 @@ - area = GM1949_waadhoeke -- id = 128838 -- parent_id = 128838 +- id = 130295 +- parent_id = 130295 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1949_waadhoeke/emissions.csv b/datasets/GM1949_waadhoeke/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1949_waadhoeke/emissions.csv +++ b/datasets/GM1949_waadhoeke/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1949_waadhoeke/graph_values.yml b/datasets/GM1949_waadhoeke/graph_values.yml index 3460c014a6..c05309f93d 100644 --- a/datasets/GM1949_waadhoeke/graph_values.yml +++ b/datasets/GM1949_waadhoeke/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3048.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15195868121420342 - :network_gas: 0.1642272533218812 - :ambient_heat: 0.6838140654639154 + :electricity: 0.1837162527592085 + :network_gas: 0.1732756438264958 + :ambient_heat: 0.6430081034142958 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 21213.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 841.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.211723239459728 - :network_gas: 0.1531070421610857 - :ambient_heat: 0.6351697183791862 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1950_westerwolde/GM1950_westerwolde.derived.ad b/datasets/GM1950_westerwolde/GM1950_westerwolde.derived.ad index db24f2438b..c0dece27d1 100644 --- a/datasets/GM1950_westerwolde/GM1950_westerwolde.derived.ad +++ b/datasets/GM1950_westerwolde/GM1950_westerwolde.derived.ad @@ -1,6 +1,6 @@ - area = GM1950_westerwolde -- id = 128839 -- parent_id = 128839 +- id = 130296 +- parent_id = 130296 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1950_westerwolde/emissions.csv b/datasets/GM1950_westerwolde/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1950_westerwolde/emissions.csv +++ b/datasets/GM1950_westerwolde/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1950_westerwolde/graph_values.yml b/datasets/GM1950_westerwolde/graph_values.yml index 1690dd496f..15802f9000 100644 --- a/datasets/GM1950_westerwolde/graph_values.yml +++ b/datasets/GM1950_westerwolde/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2431.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1474628423651695 - :network_gas: 0.1889543669915678 - :ambient_heat: 0.6635827906432626 + :electricity: 0.17799069595159855 + :network_gas: 0.1990406874435684 + :ambient_heat: 0.622968616604833 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 11770.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 9.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20587163993179203 - :network_gas: 0.17651344027282984 - :ambient_heat: 0.6176149197953783 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1952_midden_groningen/GM1952_midden_groningen.derived.ad b/datasets/GM1952_midden_groningen/GM1952_midden_groningen.derived.ad index c6e928f32b..7c0ad1456e 100644 --- a/datasets/GM1952_midden_groningen/GM1952_midden_groningen.derived.ad +++ b/datasets/GM1952_midden_groningen/GM1952_midden_groningen.derived.ad @@ -1,6 +1,6 @@ - area = GM1952_midden_groningen -- id = 128840 -- parent_id = 128840 +- id = 130297 +- parent_id = 130297 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1952_midden_groningen/emissions.csv b/datasets/GM1952_midden_groningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1952_midden_groningen/emissions.csv +++ b/datasets/GM1952_midden_groningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1952_midden_groningen/graph_values.yml b/datasets/GM1952_midden_groningen/graph_values.yml index 8e3667d721..8a17de1408 100644 --- a/datasets/GM1952_midden_groningen/graph_values.yml +++ b/datasets/GM1952_midden_groningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4501.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.148503439178904 - :network_gas: 0.1832310845160282 - :ambient_heat: 0.6682654763050679 + :electricity: 0.17931426238234355 + :network_gas: 0.19308462972479554 + :ambient_heat: 0.6276011078928609 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27986.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 150.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20722812659143236 - :network_gas: 0.17108749363426823 - :ambient_heat: 0.6216843797742994 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1954_beekdaelen/GM1954_beekdaelen.derived.ad b/datasets/GM1954_beekdaelen/GM1954_beekdaelen.derived.ad index 70c85e218e..c41d20e420 100644 --- a/datasets/GM1954_beekdaelen/GM1954_beekdaelen.derived.ad +++ b/datasets/GM1954_beekdaelen/GM1954_beekdaelen.derived.ad @@ -1,6 +1,6 @@ - area = GM1954_beekdaelen -- id = 128845 -- parent_id = 128845 +- id = 130302 +- parent_id = 130302 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1954_beekdaelen/emissions.csv b/datasets/GM1954_beekdaelen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1954_beekdaelen/emissions.csv +++ b/datasets/GM1954_beekdaelen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1954_beekdaelen/graph_values.yml b/datasets/GM1954_beekdaelen/graph_values.yml index 230b8b5cee..8d0a916466 100644 --- a/datasets/GM1954_beekdaelen/graph_values.yml +++ b/datasets/GM1954_beekdaelen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2560.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1551813967348474 - :network_gas: 0.14650231795833937 - :ambient_heat: 0.6983162853068133 + :electricity: 0.1878319563315338 + :network_gas: 0.1547549504478254 + :ambient_heat: 0.6574130932206409 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 16651.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 860.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2159033879423891 - :network_gas: 0.13638644823044133 - :ambient_heat: 0.6477101638271696 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1955_montferland/GM1955_montferland.derived.ad b/datasets/GM1955_montferland/GM1955_montferland.derived.ad index 1f9ef6dc3d..e164317153 100644 --- a/datasets/GM1955_montferland/GM1955_montferland.derived.ad +++ b/datasets/GM1955_montferland/GM1955_montferland.derived.ad @@ -1,6 +1,6 @@ - area = GM1955_montferland -- id = 128689 -- parent_id = 128689 +- id = 130146 +- parent_id = 130146 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1955_montferland/emissions.csv b/datasets/GM1955_montferland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1955_montferland/emissions.csv +++ b/datasets/GM1955_montferland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1955_montferland/graph_values.yml b/datasets/GM1955_montferland/graph_values.yml index a8311bc1c2..1fa8afeada 100644 --- a/datasets/GM1955_montferland/graph_values.yml +++ b/datasets/GM1955_montferland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2077.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1565811304925194 - :network_gas: 0.13880378229114332 - :ambient_heat: 0.7046150872163373 + :electricity: 0.18962254585802915 + :network_gas: 0.14669728569998658 + :ambient_heat: 0.6636801684419843 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 15970.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 88.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21771523509042046 - :network_gas: 0.12913905963831593 - :ambient_heat: 0.6531457052712637 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1959_altena/GM1959_altena.derived.ad b/datasets/GM1959_altena/GM1959_altena.derived.ad index 4db06e462f..f5405c81af 100644 --- a/datasets/GM1959_altena/GM1959_altena.derived.ad +++ b/datasets/GM1959_altena/GM1959_altena.derived.ad @@ -1,6 +1,6 @@ - area = GM1959_altena -- id = 128844 -- parent_id = 128844 +- id = 130301 +- parent_id = 130301 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1959_altena/emissions.csv b/datasets/GM1959_altena/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1959_altena/emissions.csv +++ b/datasets/GM1959_altena/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1959_altena/graph_values.yml b/datasets/GM1959_altena/graph_values.yml index 88b988de35..04fdbc5e0d 100644 --- a/datasets/GM1959_altena/graph_values.yml +++ b/datasets/GM1959_altena/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3723.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15641663642497247 - :network_gas: 0.1397084996626515 - :ambient_heat: 0.7038748639123761 + :electricity: 0.1894120247623809 + :network_gas: 0.1476446320269817 + :ambient_heat: 0.6629433432106373 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22525.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 328.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21750242720115923 - :network_gas: 0.12999029119536074 - :ambient_heat: 0.65250728160348 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1960_west_betuwe/GM1960_west_betuwe.derived.ad b/datasets/GM1960_west_betuwe/GM1960_west_betuwe.derived.ad index e9a7420005..a257555c8e 100644 --- a/datasets/GM1960_west_betuwe/GM1960_west_betuwe.derived.ad +++ b/datasets/GM1960_west_betuwe/GM1960_west_betuwe.derived.ad @@ -1,6 +1,6 @@ - area = GM1960_west_betuwe -- id = 128842 -- parent_id = 128842 +- id = 130299 +- parent_id = 130299 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1960_west_betuwe/emissions.csv b/datasets/GM1960_west_betuwe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1960_west_betuwe/emissions.csv +++ b/datasets/GM1960_west_betuwe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1960_west_betuwe/graph_values.yml b/datasets/GM1960_west_betuwe/graph_values.yml index 99a6a0be11..2903071cf4 100644 --- a/datasets/GM1960_west_betuwe/graph_values.yml +++ b/datasets/GM1960_west_betuwe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4312.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1567454569611169 - :network_gas: 0.13789998671385695 - :ambient_heat: 0.7053545563250261 + :electricity: 0.18983287757587003 + :network_gas: 0.14575079157438078 + :ambient_heat: 0.664416330849749 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20961.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 320.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21792779507211743 - :network_gas: 0.12828881971152792 - :ambient_heat: 0.6537833852163546 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1961_vijfheerenlanden/GM1961_vijfheerenlanden.derived.ad b/datasets/GM1961_vijfheerenlanden/GM1961_vijfheerenlanden.derived.ad index 5040d89e79..86ce2c8eec 100644 --- a/datasets/GM1961_vijfheerenlanden/GM1961_vijfheerenlanden.derived.ad +++ b/datasets/GM1961_vijfheerenlanden/GM1961_vijfheerenlanden.derived.ad @@ -1,6 +1,6 @@ - area = GM1961_vijfheerenlanden -- id = 128841 -- parent_id = 128841 +- id = 130298 +- parent_id = 130298 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1961_vijfheerenlanden/emissions.csv b/datasets/GM1961_vijfheerenlanden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1961_vijfheerenlanden/emissions.csv +++ b/datasets/GM1961_vijfheerenlanden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1961_vijfheerenlanden/graph_values.yml b/datasets/GM1961_vijfheerenlanden/graph_values.yml index 96f0843956..971b616639 100644 --- a/datasets/GM1961_vijfheerenlanden/graph_values.yml +++ b/datasets/GM1961_vijfheerenlanden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4871.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15711956116147943 - :network_gas: 0.13584241361186306 - :ambient_heat: 0.7070380252266574 + :electricity: 0.19031181057963523 + :network_gas: 0.14359558988023927 + :ambient_heat: 0.6660925995401256 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 24175.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 823.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2184115914309691 - :network_gas: 0.1263536342761213 - :ambient_heat: 0.6552347742929097 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1963_hoeksche_waard/GM1963_hoeksche_waard.derived.ad b/datasets/GM1963_hoeksche_waard/GM1963_hoeksche_waard.derived.ad index cfd42908ec..6b93600738 100644 --- a/datasets/GM1963_hoeksche_waard/GM1963_hoeksche_waard.derived.ad +++ b/datasets/GM1963_hoeksche_waard/GM1963_hoeksche_waard.derived.ad @@ -1,6 +1,6 @@ - area = GM1963_hoeksche_waard -- id = 128846 -- parent_id = 128846 +- id = 130303 +- parent_id = 130303 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1963_hoeksche_waard/emissions.csv b/datasets/GM1963_hoeksche_waard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1963_hoeksche_waard/emissions.csv +++ b/datasets/GM1963_hoeksche_waard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1963_hoeksche_waard/graph_values.yml b/datasets/GM1963_hoeksche_waard/graph_values.yml index 0f052b91f5..458dc25ab1 100644 --- a/datasets/GM1963_hoeksche_waard/graph_values.yml +++ b/datasets/GM1963_hoeksche_waard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5414.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15689623433069352 - :network_gas: 0.13707071118118552 - :ambient_heat: 0.7060330544881209 + :electricity: 0.19002588904351508 + :network_gas: 0.1448822386895577 + :ambient_heat: 0.6650918722669273 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 38171.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 523.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21812280166514086 - :network_gas: 0.12750879333943418 - :ambient_heat: 0.6543684049954249 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1966_het_hogeland/GM1966_het_hogeland.derived.ad b/datasets/GM1966_het_hogeland/GM1966_het_hogeland.derived.ad index fda43aebfa..9c57ced30c 100644 --- a/datasets/GM1966_het_hogeland/GM1966_het_hogeland.derived.ad +++ b/datasets/GM1966_het_hogeland/GM1966_het_hogeland.derived.ad @@ -1,6 +1,6 @@ - area = GM1966_het_hogeland -- id = 128843 -- parent_id = 128843 +- id = 130300 +- parent_id = 130300 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1966_het_hogeland/emissions.csv b/datasets/GM1966_het_hogeland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1966_het_hogeland/emissions.csv +++ b/datasets/GM1966_het_hogeland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1966_het_hogeland/graph_values.yml b/datasets/GM1966_het_hogeland/graph_values.yml index 38e4700cbb..43bd962034 100644 --- a/datasets/GM1966_het_hogeland/graph_values.yml +++ b/datasets/GM1966_het_hogeland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3049.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14868886511163196 - :network_gas: 0.18221124188602425 - :ambient_heat: 0.6690998930023437 + :electricity: 0.17955021592857134 + :network_gas: 0.19202283720147584 + :ambient_heat: 0.6284269468699528 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22402.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 171.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20746970929435032 - :network_gas: 0.17012116282259648 - :ambient_heat: 0.6224091278830531 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1969_westerkwartier/GM1969_westerkwartier.derived.ad b/datasets/GM1969_westerkwartier/GM1969_westerkwartier.derived.ad index 2b2696ac31..8e93960dc9 100644 --- a/datasets/GM1969_westerkwartier/GM1969_westerkwartier.derived.ad +++ b/datasets/GM1969_westerkwartier/GM1969_westerkwartier.derived.ad @@ -1,6 +1,6 @@ - area = GM1969_westerkwartier -- id = 128849 -- parent_id = 128849 +- id = 130306 +- parent_id = 130306 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1969_westerkwartier/emissions.csv b/datasets/GM1969_westerkwartier/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1969_westerkwartier/emissions.csv +++ b/datasets/GM1969_westerkwartier/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1969_westerkwartier/graph_values.yml b/datasets/GM1969_westerkwartier/graph_values.yml index 8016861e9e..b297a40174 100644 --- a/datasets/GM1969_westerkwartier/graph_values.yml +++ b/datasets/GM1969_westerkwartier/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4119.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15243201431775302 - :network_gas: 0.1616239212523584 - :ambient_heat: 0.6859440644298886 + :electricity: 0.18432013988813148 + :network_gas: 0.17055814774020941 + :ambient_heat: 0.645121712371659 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 27257.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 120.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21233794657544836 - :network_gas: 0.15064821369820425 - :ambient_heat: 0.6370138397263474 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1970_noardeast_fryslan/GM1970_noardeast_fryslan.derived.ad b/datasets/GM1970_noardeast_fryslan/GM1970_noardeast_fryslan.derived.ad index fe2d76cd8e..208bd90857 100644 --- a/datasets/GM1970_noardeast_fryslan/GM1970_noardeast_fryslan.derived.ad +++ b/datasets/GM1970_noardeast_fryslan/GM1970_noardeast_fryslan.derived.ad @@ -1,6 +1,6 @@ - area = GM1970_noardeast_fryslan -- id = 128848 -- parent_id = 128848 +- id = 130305 +- parent_id = 130305 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1970_noardeast_fryslan/emissions.csv b/datasets/GM1970_noardeast_fryslan/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1970_noardeast_fryslan/emissions.csv +++ b/datasets/GM1970_noardeast_fryslan/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1970_noardeast_fryslan/graph_values.yml b/datasets/GM1970_noardeast_fryslan/graph_values.yml index bb86e1584c..b947623d56 100644 --- a/datasets/GM1970_noardeast_fryslan/graph_values.yml +++ b/datasets/GM1970_noardeast_fryslan/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 4040.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15045225247340382 - :network_gas: 0.17251261139627888 - :ambient_heat: 0.6770351361303172 + :electricity: 0.181795701946762 + :network_gas: 0.181918135223266 + :ambient_heat: 0.636286162829972 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 20491.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 571.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20976514712677355 - :network_gas: 0.16093941149290353 - :ambient_heat: 0.629295441380323 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1978_molenlanden/GM1978_molenlanden.derived.ad b/datasets/GM1978_molenlanden/GM1978_molenlanden.derived.ad index 34c36dd198..173a0ec2e4 100644 --- a/datasets/GM1978_molenlanden/GM1978_molenlanden.derived.ad +++ b/datasets/GM1978_molenlanden/GM1978_molenlanden.derived.ad @@ -1,6 +1,6 @@ - area = GM1978_molenlanden -- id = 128847 -- parent_id = 128847 +- id = 130304 +- parent_id = 130304 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1978_molenlanden/emissions.csv b/datasets/GM1978_molenlanden/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1978_molenlanden/emissions.csv +++ b/datasets/GM1978_molenlanden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1978_molenlanden/graph_values.yml b/datasets/GM1978_molenlanden/graph_values.yml index 03f24f920d..27e987ddb7 100644 --- a/datasets/GM1978_molenlanden/graph_values.yml +++ b/datasets/GM1978_molenlanden/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 2593.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1560025048604546 - :network_gas: 0.14198622326749952 - :ambient_heat: 0.7020112718720458 + :electricity: 0.18888212654557618 + :network_gas: 0.1500291775179001 + :ambient_heat: 0.6610886959365238 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 17330.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 281.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2169665224868868 - :network_gas: 0.13213391005245056 - :ambient_heat: 0.6508995674606627 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1979_eemsdelta/GM1979_eemsdelta.derived.ad b/datasets/GM1979_eemsdelta/GM1979_eemsdelta.derived.ad index ad057fe8c1..b0aac853b8 100644 --- a/datasets/GM1979_eemsdelta/GM1979_eemsdelta.derived.ad +++ b/datasets/GM1979_eemsdelta/GM1979_eemsdelta.derived.ad @@ -1,6 +1,6 @@ - area = GM1979_eemsdelta -- id = 128850 -- parent_id = 128850 +- id = 130307 +- parent_id = 130307 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1979_eemsdelta/emissions.csv b/datasets/GM1979_eemsdelta/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1979_eemsdelta/emissions.csv +++ b/datasets/GM1979_eemsdelta/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1979_eemsdelta/graph_values.yml b/datasets/GM1979_eemsdelta/graph_values.yml index 6cac773d88..f34be724a1 100644 --- a/datasets/GM1979_eemsdelta/graph_values.yml +++ b/datasets/GM1979_eemsdelta/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 3545.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15005346578981135 - :network_gas: 0.17470593815603752 - :ambient_heat: 0.6752405960541511 + :electricity: 0.18128763849436982 + :network_gas: 0.18420442412947782 + :ambient_heat: 0.6345079373761523 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 22892.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 350.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20924635416411283 - :network_gas: 0.1630145833435465 - :ambient_heat: 0.6277390624923407 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1980_dijk_en_waard/GM1980_dijk_en_waard.derived.ad b/datasets/GM1980_dijk_en_waard/GM1980_dijk_en_waard.derived.ad index dc38d858dd..f65a56feb1 100644 --- a/datasets/GM1980_dijk_en_waard/GM1980_dijk_en_waard.derived.ad +++ b/datasets/GM1980_dijk_en_waard/GM1980_dijk_en_waard.derived.ad @@ -1,6 +1,6 @@ - area = GM1980_dijk_en_waard -- id = 128851 -- parent_id = 128851 +- id = 130308 +- parent_id = 130308 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1980_dijk_en_waard/emissions.csv b/datasets/GM1980_dijk_en_waard/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1980_dijk_en_waard/emissions.csv +++ b/datasets/GM1980_dijk_en_waard/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1980_dijk_en_waard/graph_values.yml b/datasets/GM1980_dijk_en_waard/graph_values.yml index f2bab0e638..ac733f804a 100644 --- a/datasets/GM1980_dijk_en_waard/graph_values.yml +++ b/datasets/GM1980_dijk_en_waard/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6661.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.159919167735872 - :network_gas: 0.12044457745270397 - :ambient_heat: 0.719636254811424 + :electricity: 0.19390003909391562 + :network_gas: 0.12744853776199266 + :ambient_heat: 0.6786514231440917 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 36193.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 78.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.22202697664442297 - :network_gas: 0.11189209342230583 - :ambient_heat: 0.6660809299332713 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1982_land_van_cuijk/GM1982_land_van_cuijk.derived.ad b/datasets/GM1982_land_van_cuijk/GM1982_land_van_cuijk.derived.ad index adcdd77ee3..1ae2850fce 100644 --- a/datasets/GM1982_land_van_cuijk/GM1982_land_van_cuijk.derived.ad +++ b/datasets/GM1982_land_van_cuijk/GM1982_land_van_cuijk.derived.ad @@ -1,6 +1,6 @@ - area = GM1982_land_van_cuijk -- id = 128852 -- parent_id = 128852 +- id = 130309 +- parent_id = 130309 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1982_land_van_cuijk/emissions.csv b/datasets/GM1982_land_van_cuijk/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1982_land_van_cuijk/emissions.csv +++ b/datasets/GM1982_land_van_cuijk/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1982_land_van_cuijk/graph_values.yml b/datasets/GM1982_land_van_cuijk/graph_values.yml index b86c538172..ca9eacda26 100644 --- a/datasets/GM1982_land_van_cuijk/graph_values.yml +++ b/datasets/GM1982_land_van_cuijk/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 8066.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1558134836882614 - :network_gas: 0.1430258397145625 - :ambient_heat: 0.7011606765971763 + :electricity: 0.18864031921758234 + :network_gas: 0.15111731209800017 + :ambient_heat: 0.6602423686844174 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 39031.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 325.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21672185503273356 - :network_gas: 0.1331125798690635 - :ambient_heat: 0.650165565098203 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1991_maashorst/GM1991_maashorst.derived.ad b/datasets/GM1991_maashorst/GM1991_maashorst.derived.ad index 1488393f1f..0c9d0a21b3 100644 --- a/datasets/GM1991_maashorst/GM1991_maashorst.derived.ad +++ b/datasets/GM1991_maashorst/GM1991_maashorst.derived.ad @@ -1,6 +1,6 @@ - area = GM1991_maashorst -- id = 128853 -- parent_id = 128853 +- id = 130310 +- parent_id = 130310 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1991_maashorst/emissions.csv b/datasets/GM1991_maashorst/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1991_maashorst/emissions.csv +++ b/datasets/GM1991_maashorst/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1991_maashorst/graph_values.yml b/datasets/GM1991_maashorst/graph_values.yml index b5a8bb3ebd..1050673f83 100644 --- a/datasets/GM1991_maashorst/graph_values.yml +++ b/datasets/GM1991_maashorst/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 6789.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15653460368612232 - :network_gas: 0.13905967972632716 - :ambient_heat: 0.7044057165875506 + :electricity: 0.18956299785091352 + :network_gas: 0.1469652521270431 + :ambient_heat: 0.6634717500220434 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 25517.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 55.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2176550459772123 - :network_gas: 0.12937981609114832 - :ambient_heat: 0.6529651379316392 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/GM1992_voorne_aan_zee/GM1992_voorne_aan_zee.derived.ad b/datasets/GM1992_voorne_aan_zee/GM1992_voorne_aan_zee.derived.ad index 35c5b1d5f5..8363e43430 100644 --- a/datasets/GM1992_voorne_aan_zee/GM1992_voorne_aan_zee.derived.ad +++ b/datasets/GM1992_voorne_aan_zee/GM1992_voorne_aan_zee.derived.ad @@ -1,6 +1,6 @@ - area = GM1992_voorne_aan_zee -- id = 128854 -- parent_id = 128854 +- id = 130311 +- parent_id = 130311 - group = municipality - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/GM1992_voorne_aan_zee/emissions.csv b/datasets/GM1992_voorne_aan_zee/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/GM1992_voorne_aan_zee/emissions.csv +++ b/datasets/GM1992_voorne_aan_zee/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/GM1992_voorne_aan_zee/graph_values.yml b/datasets/GM1992_voorne_aan_zee/graph_values.yml index c01dda2eff..b8663509b1 100644 --- a/datasets/GM1992_voorne_aan_zee/graph_values.yml +++ b/datasets/GM1992_voorne_aan_zee/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 5708.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.138349977994097 :electricity: 0.392857547446344 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15700378052227112 - :network_gas: 0.13647920712750863 - :ambient_heat: 0.7065170123502201 + :electricity: 0.19016357280935733 + :network_gas: 0.14426266082988565 + :ambient_heat: 0.6655737663607569 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 33090.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 570.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21826187961703514 - :network_gas: 0.126952481531857 - :ambient_heat: 0.6547856388511077 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.0366316528640784 + parent_share: 0.037167618 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.0174442272589 + parent_share: 0.017699457 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174028867 + parent_share: 0.032338814 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.097110671286661 + parent_share: 0.098531517 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.141332525618111 + parent_share: 0.176496687 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.097632076 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.0024774154802166 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.652366326 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.236506747 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.992198732 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.007801268 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.270531400966184 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.531400966183575 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.3922599511574879 + parent_share: 0.518304995 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.500658809437908 + parent_share: 0.383243045 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.0212743750889039 + parent_share: 0.038124202 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.9983884281198973 + parent_share: 0.996779566 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.0016115718801027 + parent_share: 0.003220434 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.4310899160384949 + parent_share: 0.438476899 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240718986006602 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.265438604839786 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104894965595536 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/HR_croatia/HR_croatia.derived.ad b/datasets/HR_croatia/HR_croatia.derived.ad index cdc1fbb071..a19db84149 100644 --- a/datasets/HR_croatia/HR_croatia.derived.ad +++ b/datasets/HR_croatia/HR_croatia.derived.ad @@ -1,6 +1,6 @@ - area = HR_croatia -- id = 128450 -- parent_id = 128450 +- id = 128873 +- parent_id = 128873 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/HR_croatia/emissions.csv b/datasets/HR_croatia/emissions.csv index 0443198786..d3b89a28f2 100644 --- a/datasets/HR_croatia/emissions.csv +++ b/datasets/HR_croatia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,61.07569 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,75.65983 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,2645.57563 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,6.97726 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,4.54613 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.7571 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,31.86055 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.23881 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,286.93793 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,184.63735 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,404.65878 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,44.55129 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,10.72038 -Industry,Other,non_energetic,co2,kton CO2-eq,1417.99326 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1494.51088 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,1.6249 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,1.84156 -Industry,Steel,non_energetic,co2,kton CO2-eq,4.9118 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,121.77671 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5857.61481 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,68.03867 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1985.62774 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,835.45662 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,76.8576 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,61.07569 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,50.01973 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,75.65983 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4374.31791 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,2645.57563 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,854.65183 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4.33748 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,6.97726 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,496.61612 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,3.77845 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,4.54613 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,147.23118 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,1.40612 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.7571 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,3728.89153 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,15.41884 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,31.86055 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,912.15808 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.90969 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.23881 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,582.51711 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,286.93793 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,465.15403 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,184.63735 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,2028.84306 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,445.0935 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,404.65878 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,118.7968 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1117.2839 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,192.42603 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,6.101 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,558.67224 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,670.73908 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,44.55129 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,5208.58262 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,25.24246 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,10.72038 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1473.7312 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1417.99326 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,43.70325 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1494.51088 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,173.7976 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,4.36649 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2424.73845 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,5.22708 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,1.6249 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,4.8695 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,1.84156 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.80844 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,4.9118 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,44.62668 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,121.77671 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,6356.82652 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5857.61481 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,3787.05724 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,106.56669 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,68.03867 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.5357 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1113.30928 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1985.62774 diff --git a/datasets/HR_croatia/graph_values.yml b/datasets/HR_croatia/graph_values.yml index a8a1f02c39..2f386dc234 100644 --- a/datasets/HR_croatia/graph_values.yml +++ b/datasets/HR_croatia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/HU_hungary/HU_hungary.derived.ad b/datasets/HU_hungary/HU_hungary.derived.ad index 8a5264c0bb..7cbc364499 100644 --- a/datasets/HU_hungary/HU_hungary.derived.ad +++ b/datasets/HU_hungary/HU_hungary.derived.ad @@ -1,6 +1,6 @@ - area = HU_hungary -- id = 128451 -- parent_id = 128451 +- id = 128874 +- parent_id = 128874 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/HU_hungary/emissions.csv b/datasets/HU_hungary/emissions.csv index 819a6934d0..337e9a42b6 100644 --- a/datasets/HU_hungary/emissions.csv +++ b/datasets/HU_hungary/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,21.74067 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,216.83339 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,6772.49636 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,21.93039 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,6.35656 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,73.60341 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.36122 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,149.44345 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,1876.71301 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,548.17927 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1306.62934 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,48.21406 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,28.55778 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,43.35598 -Industry,Other,non_energetic,co2,kton CO2-eq,1570.0333 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,2086.41305 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,2.47625 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,4.77445 -Industry,Steel,non_energetic,co2,kton CO2-eq,1218.10073 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,5.27985 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,52.1244 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5440.17742 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.31571 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.16814 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,169.38765 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,30.69736 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,3757.33523 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,2651.54169 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,37.73788 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,21.74067 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,384.74671 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,216.83339 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,9706.09934 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,6772.49636 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2897.9949 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,17.97823 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,21.93039 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,504.98167 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,3.77885 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,6.35656 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,17849.54332 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,63.93067 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,73.60341 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,570.01541 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,1.41204 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.36122 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,485.15776 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,149.44345 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,3319.73938 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,1876.71301 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,15761.35132 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,995.3485 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,548.17927 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,127.72029 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,337.5331 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,504.18133 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1306.62934 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,20.01827 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,48.21406 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,1200.18618 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,2747.50105 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,28.55778 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,13364.21049 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,34.17002 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,43.35598 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,3092.19106 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1570.0333 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,131.28728 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,2086.41305 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,34.88 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.24416 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2375.62569 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,4.80636 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,2.47625 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,5.7118 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,4.77445 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,3154.82051 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1218.10073 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,8.11772 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,5.27985 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,55.44357 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,52.1244 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,3416.9804 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5440.17742 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,14.50137 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.10851 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.31571 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,148.7856 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.14584 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.16814 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,8662.49317 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,186.85255 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,169.38765 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,96.87855 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,30.69736 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,3989.45533 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,3757.33523 diff --git a/datasets/HU_hungary/graph_values.yml b/datasets/HU_hungary/graph_values.yml index ae2c2f8632..00a48b0b11 100644 --- a/datasets/HU_hungary/graph_values.yml +++ b/datasets/HU_hungary/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.5295491570001374 :electricity: 0.05794029323441088 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.18347440184389607 + :electricity: 0.4025553827141437 energy_chp_combined_cycle_ht_network_gas: demand: 16270.717803240675 full_load_hours: 4353.789174 output: :steam_hot_water: 0.18347440184389607 :electricity: 0.4025553827141437 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.18347440184389607 + :electricity: 0.4025553827141437 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4353.789174 diff --git a/datasets/IE_ireland/IE_ireland.derived.ad b/datasets/IE_ireland/IE_ireland.derived.ad index 945404b216..78e5679962 100644 --- a/datasets/IE_ireland/IE_ireland.derived.ad +++ b/datasets/IE_ireland/IE_ireland.derived.ad @@ -1,6 +1,6 @@ - area = IE_ireland -- id = 128452 -- parent_id = 128452 +- id = 130312 +- parent_id = 130312 - group = country - enabled.etengine = true - enabled.etmodel = true @@ -9,7 +9,8 @@ - has_semi_detached_houses = true - has_coastline = true - has_industry = true -- has_lignite = true +- has_lignite = false +- has_lignite = false - has_merit_order = true - has_mountains = true - has_solar_csp = true @@ -49,52 +50,52 @@ - interconnection_net_costs_present = 41745753.568376064 - offshore_net_costs_present = 0.0 - hydrogen_electrolysis_solar_pv_capacity_ratio = 0.35668134 -- present_share_of_apartments_before_1945_in_useful_demand_for_space_heating = 0.00651 -- present_share_of_apartments_1945_1964_in_useful_demand_for_space_heating = 0.00563 -- present_share_of_apartments_1965_1984_in_useful_demand_for_space_heating = 0.00721 -- present_share_of_apartments_1985_2004_in_useful_demand_for_space_heating = 0.0038 -- present_share_of_apartments_2005_present_in_useful_demand_for_space_heating = 0.00124 -- present_share_of_detached_houses_before_1945_in_useful_demand_for_space_heating = 0.12147 -- present_share_of_detached_houses_1945_1964_in_useful_demand_for_space_heating = 0.08717 -- present_share_of_detached_houses_1965_1984_in_useful_demand_for_space_heating = 0.14658 -- present_share_of_detached_houses_1985_2004_in_useful_demand_for_space_heating = 0.13607 -- present_share_of_detached_houses_2005_present_in_useful_demand_for_space_heating = 0.07156 -- present_share_of_semi_detached_houses_before_1945_in_useful_demand_for_space_heating = 0.0801 -- present_share_of_semi_detached_houses_1945_1964_in_useful_demand_for_space_heating = 0.05748 -- present_share_of_semi_detached_houses_1965_1984_in_useful_demand_for_space_heating = 0.09666 -- present_share_of_semi_detached_houses_1985_2004_in_useful_demand_for_space_heating = 0.08973 -- present_share_of_semi_detached_houses_2005_present_in_useful_demand_for_space_heating = 0.04719 -- present_share_of_terraced_houses_before_1945_in_useful_demand_for_space_heating = 0.00658 -- present_share_of_terraced_houses_1945_1964_in_useful_demand_for_space_heating = 0.00751 -- present_share_of_terraced_houses_1965_1984_in_useful_demand_for_space_heating = 0.01854 -- present_share_of_terraced_houses_1985_2004_in_useful_demand_for_space_heating = 0.00797 -- present_share_of_terraced_houses_2005_present_in_useful_demand_for_space_heating = 0.001 -- typical_useful_demand_for_space_heating_apartments_before_1945 = 155.0207303 -- typical_useful_demand_for_space_heating_apartments_1945_1964 = 160.1721088 -- typical_useful_demand_for_space_heating_apartments_1965_1984 = 125.873972 -- typical_useful_demand_for_space_heating_apartments_1985_2004 = 59.02018821 -- typical_useful_demand_for_space_heating_apartments_2005_present = 20.49391352 -- typical_useful_demand_for_space_heating_apartments_future = 20.49391352 -- typical_useful_demand_for_space_heating_detached_houses_before_1945 = 131.1172601 -- typical_useful_demand_for_space_heating_detached_houses_1945_1964 = 118.4404557 -- typical_useful_demand_for_space_heating_detached_houses_1965_1984 = 112.8077999 -- typical_useful_demand_for_space_heating_detached_houses_1985_2004 = 85.42906229 -- typical_useful_demand_for_space_heating_detached_houses_2005_present = 70.15360819 -- typical_useful_demand_for_space_heating_detached_houses_future = 70.15360819 -- typical_useful_demand_for_space_heating_semi_detached_houses_before_1945 = 131.12 -- typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964 = 118.44 -- typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984 = 112.81 -- typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004 = 85.43 -- typical_useful_demand_for_space_heating_semi_detached_houses_2005_present = 70.15 -- typical_useful_demand_for_space_heating_semi_detached_houses_future = 70.15 -- typical_useful_demand_for_space_heating_terraced_houses_before_1945 = 155.0207303 -- typical_useful_demand_for_space_heating_terraced_houses_1945_1964 = 160.1721088 -- typical_useful_demand_for_space_heating_terraced_houses_1965_1984 = 126.0642001 -- typical_useful_demand_for_space_heating_terraced_houses_1985_2004 = 59.02018821 -- typical_useful_demand_for_space_heating_terraced_houses_2005_present = 20.49391352 -- typical_useful_demand_for_space_heating_terraced_houses_future = 20.49391352 -- typical_useful_demand_for_space_heating_buildings_present = 174.0012944 -- typical_useful_demand_for_space_heating_buildings_future = 174.0012944 +- present_share_of_apartments_before_1945_in_useful_demand_for_space_heating = 0.005 +- present_share_of_apartments_1945_1964_in_useful_demand_for_space_heating = 0.005 +- present_share_of_apartments_1965_1984_in_useful_demand_for_space_heating = 0.006 +- present_share_of_apartments_1985_2004_in_useful_demand_for_space_heating = 0.004 +- present_share_of_apartments_2005_present_in_useful_demand_for_space_heating = 0.006 +- present_share_of_detached_houses_before_1945_in_useful_demand_for_space_heating = 0.122 +- present_share_of_detached_houses_1945_1964_in_useful_demand_for_space_heating = 0.041 +- present_share_of_detached_houses_1965_1984_in_useful_demand_for_space_heating = 0.082 +- present_share_of_detached_houses_1985_2004_in_useful_demand_for_space_heating = 0.173 +- present_share_of_detached_houses_2005_present_in_useful_demand_for_space_heating = 0.05 +- present_share_of_semi_detached_houses_before_1945_in_useful_demand_for_space_heating = 0.091 +- present_share_of_semi_detached_houses_1945_1964_in_useful_demand_for_space_heating = 0.136 +- present_share_of_semi_detached_houses_1965_1984_in_useful_demand_for_space_heating = 0.039 +- present_share_of_semi_detached_houses_1985_2004_in_useful_demand_for_space_heating = 0.047 +- present_share_of_semi_detached_houses_2005_present_in_useful_demand_for_space_heating = 0.015 +- present_share_of_terraced_houses_before_1945_in_useful_demand_for_space_heating = 0.064 +- present_share_of_terraced_houses_1945_1964_in_useful_demand_for_space_heating = 0.042 +- present_share_of_terraced_houses_1965_1984_in_useful_demand_for_space_heating = 0.047 +- present_share_of_terraced_houses_1985_2004_in_useful_demand_for_space_heating = 0.017 +- present_share_of_terraced_houses_2005_present_in_useful_demand_for_space_heating = 0.009 +- typical_useful_demand_for_space_heating_apartments_before_1945 = 166.61 +- typical_useful_demand_for_space_heating_apartments_1945_1964 = 137.92 +- typical_useful_demand_for_space_heating_apartments_1965_1984 = 130.77 +- typical_useful_demand_for_space_heating_apartments_1985_2004 = 117.92 +- typical_useful_demand_for_space_heating_apartments_2005_present = 68.66 +- typical_useful_demand_for_space_heating_apartments_future = 47.04 +- typical_useful_demand_for_space_heating_detached_houses_before_1945 = 225.06 +- typical_useful_demand_for_space_heating_detached_houses_1945_1964 = 199.38 +- typical_useful_demand_for_space_heating_detached_houses_1965_1984 = 177.09 +- typical_useful_demand_for_space_heating_detached_houses_1985_2004 = 138.48 +- typical_useful_demand_for_space_heating_detached_houses_2005_present = 71.45 +- typical_useful_demand_for_space_heating_detached_houses_future = 42.48 +- typical_useful_demand_for_space_heating_semi_detached_houses_before_1945 = 215.95 +- typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964 = 166.52 +- typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984 = 163.5 +- typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004 = 126.89 +- typical_useful_demand_for_space_heating_semi_detached_houses_2005_present = 64.95 +- typical_useful_demand_for_space_heating_semi_detached_houses_future = 43.53 +- typical_useful_demand_for_space_heating_terraced_houses_before_1945 = 192.01 +- typical_useful_demand_for_space_heating_terraced_houses_1945_1964 = 143.27 +- typical_useful_demand_for_space_heating_terraced_houses_1965_1984 = 125.36 +- typical_useful_demand_for_space_heating_terraced_houses_1985_2004 = 121.67 +- typical_useful_demand_for_space_heating_terraced_houses_2005_present = 72.7 +- typical_useful_demand_for_space_heating_terraced_houses_future = 44.16 +- typical_useful_demand_for_space_heating_buildings_present = 403.0 +- typical_useful_demand_for_space_heating_buildings_future = 190.0 - heat_share_of_apartments_with_block_heating = 0.154 - heat_infrastructure_households_ht_indoor_investment_costs_apartments_with_block_heating_eur = 4069.0 - heat_infrastructure_households_ht_indoor_investment_costs_apartments_without_block_heating_eur = 7372.0 @@ -147,18 +148,18 @@ - electric_vehicle_profile_3_share = 0.08 - electric_vehicle_profile_4_share = 0.12 - electric_vehicle_profile_5_share = 0.0 -- annual_infrastructure_cost_gas = 151887197.2 +- annual_infrastructure_cost_gas = 110000000.0 - areable_land = 43562.0 -- co2_emission_1990 = 30.25743666 +- co2_emission_1990 = 32.94442 - coast_line = 7500.0 -- interconnector_capacity = 1750.0 +- interconnector_capacity = 1100.0 - total_land_area = 69947.0 -- number_of_cars = 2290069.73264093 +- number_of_cars = 2253210.0 - number_of_busses = 12990.0 - number_of_trucks = 24383.0 - number_of_vans = 327878.0 - present_number_of_residences = 2059537.0 -- present_number_of_buildings = 350500.9128 +- present_number_of_buildings = 318547.5442 - present_number_of_apartments_before_1945 = 18353.0 - present_number_of_apartments_1945_1964 = 15342.0 - present_number_of_apartments_1965_1984 = 25008.0 @@ -179,8 +180,8 @@ - present_number_of_terraced_houses_1965_1984 = 41421.0 - present_number_of_terraced_houses_1985_2004 = 38019.0 - present_number_of_terraced_houses_2005_present = 13692.0 -- number_of_inhabitants = 4904240.0 -- offshore_suitable_for_wind = 28000.0 +- number_of_inhabitants = 4940311.0 +- offshore_suitable_for_wind = 22235.0 - residences_roof_surface_available_for_pv = 19.871552009840777 - buildings_roof_surface_available_for_pv = 24.87969529104993 - energetic_emissions_other_ghg_industry = 0.02143423 @@ -205,4 +206,4 @@ - base_dataset = eu - scaling.area_attribute = number_of_inhabitants - scaling.base_value = 500700753 -- scaling.value = 4904240 +- scaling.value = 4940311 diff --git a/datasets/IE_ireland/emissions.csv b/datasets/IE_ireland/emissions.csv index fe11622838..b2cedd35f6 100644 --- a/datasets/IE_ireland/emissions.csv +++ b/datasets/IE_ireland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,53.48264 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,435.88301 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,21353.89749 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,11.43189 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,24.6131 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,4.32241 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,135.29076 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.29569 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.28565 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,100.99966 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,172.84402 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,65.07907 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,20.65369 -Industry,Other,non_energetic,co2,kton CO2-eq,2163.0056 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,913.57152 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.30032 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.33375 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5638.88523 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,1018.18247 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.13804 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,132.35241 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,31.97419 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,943.69467 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,660.29504 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,62.7828 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,53.48264 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,451.71302 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,435.88301 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,19216.89332 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,21353.89749 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2130.04124 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,11.97059 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,11.43189 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,1072.69182 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,8.13848 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,24.6131 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,56.77574 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.55241 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,4.32241 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,10876.49 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,70.35104 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,135.29076 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,100.13427 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.36729 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.29569 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.00601 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.28565 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,118.29562 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,100.99966 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,7049.70118 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,521.65811 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,172.84402 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,990.2335 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,885.1 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,21.15786 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,65.07907 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,4046.60072 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,18.88389 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,20.65369 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1211.43566 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,2163.0056 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,63.3953 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,913.57152 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,168.38152 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.2803 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.30032 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.23789 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.33375 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,26.08 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5311.16464 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,5638.88523 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,698.27801 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,1018.18247 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,73.13693 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.07255 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.13804 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,5043.42686 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,114.47551 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,132.35241 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,95.58639 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,31.97419 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1613.65157 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,943.69467 diff --git a/datasets/IE_ireland/graph_values.yml b/datasets/IE_ireland/graph_values.yml index b8c0ed8afa..70c9ae75b7 100644 --- a/datasets/IE_ireland/graph_values.yml +++ b/datasets/IE_ireland/graph_values.yml @@ -75,7 +75,7 @@ buildings_final_demand_crude_oil: buildings_final_demand_diesel: demand: 5266.068 buildings_final_demand_electricity: - demand: 40665.644 + demand: 33203.244 buildings_final_demand_ht_steam_hot_water: demand: 0.0 buildings_final_demand_kerosene: @@ -97,7 +97,7 @@ buildings_final_demand_solar_thermal: buildings_final_demand_wood_pellets: demand: 586.56 buildings_solar_pv_solar_radiation: - demand: 0.0 + demand: 157.12941176470588 full_load_hours: 746.2965638591616 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: @@ -105,7 +105,7 @@ buildings_space_heater_hybrid_heatpump_air_water_electricity: :network_gas: 0.187 :ambient_heat: 0.633 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: - number_of_units: 350500.9128 + number_of_units: 318547.5442 bunkers_total_useful_demand_planes: demand: 46490.642 bunkers_total_useful_demand_ships: @@ -113,7 +113,7 @@ bunkers_total_useful_demand_ships: energy_battery_solar_pv_solar_radiation: full_load_hours: 746.2965638591616 energy_battery_wind_turbine_inland: - full_load_hours: 2511.0937 + full_load_hours: 2313.11 energy_blastfurnace_transformation_cokes: input: :coal: 0.44 @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 @@ -138,13 +146,13 @@ energy_chp_combined_cycle_mt_network_gas: :steam_hot_water: 0.42 :electricity: 0.46 energy_chp_local_engine_ht_biogas: - demand: 363.26599999999996 + demand: 661.6582414450464 full_load_hours: 8500.0 output: :steam_hot_water: 0.0 :electricity: 0.5492476587404271 energy_chp_local_engine_ht_network_gas: - demand: 939.8749689050092 + demand: 11629.064341787063 full_load_hours: 6480.448123 output: :steam_hot_water: 0.0 @@ -172,7 +180,7 @@ energy_chp_local_ht_wood_pellets_ccs_must_run: :steam_hot_water: 0.0 :electricity: 0.49011226454976753 energy_chp_local_ht_wood_pellets_dispatchable: - demand: 63.86699999999999 + demand: 260.5472444508338 full_load_hours: 4166.526904 output: :steam_hot_water: 0.0 @@ -238,7 +246,7 @@ energy_chp_ultra_supercritical_ht_lignite: :steam_hot_water: 0.0 :electricity: 0.19462665232674406 full_load_hours: 4166.526904 - demand: 291.02900000000005 + demand: 0.0 energy_chp_ultra_supercritical_mt_coal: demand: 0.0 output: @@ -418,7 +426,7 @@ energy_power_combined_cycle_coal_gas: :electricity: 0.4 full_load_hours: 1789.0 energy_power_combined_cycle_network_gas_dispatchable: - demand: 95836.267 + demand: 77696.2665655416 full_load_hours: 3742.098839 output: :electricity: 0.5275534052260195 @@ -427,7 +435,7 @@ energy_power_combined_cycle_network_gas_must_run: output: :electricity: 0.5275534052260195 energy_power_engine_diesel: - demand: 0.0 + demand: 518.4 full_load_hours: 4000.0 output: :electricity: 0.38 @@ -444,7 +452,7 @@ energy_power_hv_network_loss: energy_power_hybrid_wind_turbine_offshore: full_load_hours: 2600.4235 energy_power_hydro_mountain: - demand: 4289.316842105263 + demand: 3359.684210526316 full_load_hours: 4775.96226 energy_power_hydro_river: demand: 0.0 @@ -467,12 +475,12 @@ energy_power_solar_csp_solar_radiation: energy_power_solar_pv_offshore: full_load_hours: 746.2965638591616 energy_power_solar_pv_solar_radiation: - demand: 848.7529411764706 + demand: 0.0 full_load_hours: 746.2965638591616 energy_power_supercritical_ccs_waste_mix: full_load_hours: 4100.0 energy_power_supercritical_coal: - demand: 6360.020999999998 + demand: 0.0 full_load_hours: 594.0373619 output: :electricity: 0.287490717404864 @@ -482,7 +490,7 @@ energy_power_supercritical_waste_mix: output: :electricity: 0.2858222800338988 energy_power_turbine_network_gas_dispatchable: - demand: 0.0 + demand: 16837.7 full_load_hours: 8000.0 output: :electricity: 0.34 @@ -496,7 +504,7 @@ energy_power_ultra_supercritical_ccs_coal: :electricity: 0.361 full_load_hours: 4000.0 energy_power_ultra_supercritical_coal: - demand: 0.0 + demand: 6190.869565217391 output: :electricity: 0.46 full_load_hours: 8000.0 @@ -514,7 +522,7 @@ energy_power_ultra_supercritical_lignite: output: :electricity: 0.3769055163823893 full_load_hours: 4507.952699 - demand: 18256.403 + demand: 0.0 energy_power_ultra_supercritical_network_gas: demand: 0.0 full_load_hours: 8000.0 @@ -528,8 +536,8 @@ energy_power_wind_turbine_coastal: demand: 0.0 full_load_hours: 2600.4235 energy_power_wind_turbine_inland: - demand: 37185.717525773194 - full_load_hours: 2511.0937 + demand: 35703.092783505155 + full_load_hours: 2313.11 energy_power_wind_turbine_offshore: demand: 0.0 full_load_hours: 2600.4235 @@ -579,7 +587,7 @@ households_final_demand_solar_thermal: households_final_demand_wood_pellets: demand: 1065.896 households_solar_pv_solar_radiation: - demand: 0.0 + demand: 558.8682352941175 full_load_hours: 746.2965638591616 households_solar_pvt_solar_radiation: full_load_hours: 746.2965638591616 @@ -728,9 +736,9 @@ industry_final_demand_diesel: industry_final_demand_diesel_non_energetic: demand: 0.0 industry_final_demand_electricity: - demand: 25475.450999999994 + demand: 18013.050999999992 industry_final_demand_for_other_ict_dsr_electricity: - demand: 5153.0 + demand: 12615.4 industry_final_demand_hydrogen_non_energetic: demand: 0.0 industry_final_demand_kerosene: @@ -909,11 +917,11 @@ transport_shipping_mixer_lng: :lng: 0.788231329867936 :bio_lng: 0.211768670132064 transport_useful_demand_bicycles: - demand: 0.0 + demand: 462.745131 transport_useful_demand_busses: number_of_units: 12990.0 transport_useful_demand_cars: - number_of_units: 2290069.73264093 + number_of_units: 2253210.0 transport_useful_demand_trucks: number_of_units: 24383.0 transport_useful_demand_vans: @@ -1031,9 +1039,9 @@ households_final_demand_for_hot_water_network_gas-households_water_heater_combin households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: parent_share: 0.0 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: - parent_share: 0.16 + parent_share: 0.27 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: - parent_share: 0.83 + parent_share: 0.53 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: parent_share: 0.91701398 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: @@ -1085,11 +1093,11 @@ industry_final_demand_crude_oil_non_energetic-industry_final_demand_for_chemical industry_final_demand_crude_oil_non_energetic-industry_final_demand_for_other_crude_oil_non_energetic@crude_oil: parent_share: 1.0 industry_final_demand_electricity-industry_final_demand_for_chemical_dsr_electricity@electricity: - parent_share: 0.16944559686107227 + parent_share: 0.23964307878770794 industry_final_demand_electricity-industry_final_demand_for_metal_dsr_electricity@electricity: - parent_share: 0.07523635204731019 + parent_share: 0.1064050726331703 industry_final_demand_electricity-industry_final_demand_for_other_dsr_electricity@electricity: - parent_share: 0.7553180510916174 + parent_share: 0.6539518485791217 industry_final_demand_for_chemical_coal-industry_final_demand_for_chemical_fertilizers_coal@coal: parent_share: 0.0 industry_final_demand_for_chemical_coal-industry_final_demand_for_chemical_other_coal@coal: @@ -1185,9 +1193,9 @@ industry_final_demand_for_other_crude_oil-industry_final_demand_for_other_food_c industry_final_demand_for_other_crude_oil-industry_final_demand_for_other_paper_crude_oil@crude_oil: parent_share: 0.0028538592430600554 industry_final_demand_for_other_electricity-industry_final_demand_for_other_food_electricity@electricity: - parent_share: 0.29582849410988477 + parent_share: 0.483235350945375 industry_final_demand_for_other_electricity-industry_final_demand_for_other_paper_electricity@electricity: - parent_share: 0.023684304618401732 + parent_share: 0.03868827202939848 industry_final_demand_for_other_food_electricity-industry_other_food_heater_electricity@electricity: parent_share: 0.0 industry_final_demand_for_other_food_electricity-industry_useful_demand_for_other_food_electricity@electricity: diff --git a/datasets/IT_italy/IT_italy.derived.ad b/datasets/IT_italy/IT_italy.derived.ad index 40957f6162..e68ccb9920 100644 --- a/datasets/IT_italy/IT_italy.derived.ad +++ b/datasets/IT_italy/IT_italy.derived.ad @@ -1,6 +1,6 @@ - area = IT_italy -- id = 128453 -- parent_id = 128453 +- id = 128876 +- parent_id = 128876 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/IT_italy/emissions.csv b/datasets/IT_italy/emissions.csv index 17fc22e018..7a85b0e6f3 100644 --- a/datasets/IT_italy/emissions.csv +++ b/datasets/IT_italy/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,706.24663 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,429.58115 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,31760.70928 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,441.47686 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,85.25429 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,50.36559 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,307.17637 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,20.84674 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,614.41877 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,4178.69716 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,3590.39743 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,783.20756 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,854.51153 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,38.28216 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,985.65749 -Industry,Other,non_energetic,co2,kton CO2-eq,12084.64405 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,18095.88813 -Industry,Other metals,non_energetic,co2,kton CO2-eq,245.23418 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,5.2351 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,130.30428 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,29.526 -Industry,Steel,non_energetic,co2,kton CO2-eq,1357.04996 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,42.33991 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,636.18347 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,42473.19903 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,12.85631 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,10.15422 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,1101.96678 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,95.62048 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,19561.37837 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7735.64348 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,697.71594 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,706.24663 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,509.87108 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,429.58115 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,37166.12198 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,31760.70928 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,11902.19842 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.30507 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,441.47686 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4284.77854 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,32.55016 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,85.25429 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,4279.57047 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,39.89117 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,50.36559 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,108669.92237 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,379.84365 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,307.17637 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,12454.41112 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,167.42517 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,20.84674 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,1647.21525 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,614.41877 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,10092.71303 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,4178.69716 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,55173.77659 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2018.36157 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3590.39743 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,359.29 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1778.46582 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,632.65943 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,783.20756 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5318.60362 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,854.51153 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,1891.5 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,1783.29404 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,38.28216 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,90771.74831 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1377.98362 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,985.65749 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,22401.21134 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,12084.64405 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,997.71056 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,18095.88813 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,894.5048 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,245.23418 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,5.2351 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,15817.12687 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,131.41071 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,130.30428 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,2400.41925 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,62.8068 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,29.526 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,3124.07202 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1357.04996 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,75.84912 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,42.33991 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,2201.59414 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,636.18347 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,5690.32111 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,42473.19903 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,1071.18571 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,64.4727 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,12.85631 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,410.78293 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,6.36533 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,10.15422 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,100524.74878 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1870.72441 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1101.96678 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,512.00858 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,95.62048 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,18486.86819 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,19561.37837 diff --git a/datasets/IT_italy/graph_values.yml b/datasets/IT_italy/graph_values.yml index 2340237629..d25ac45c98 100644 --- a/datasets/IT_italy/graph_values.yml +++ b/datasets/IT_italy/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.1723605934062073 :electricity: 0.3234056086934123 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.08245301361559373 + :electricity: 0.43696461787273644 energy_chp_combined_cycle_ht_network_gas: demand: 75605.13455731199 full_load_hours: 4676.730364 output: :steam_hot_water: 0.08245301361559373 :electricity: 0.43696461787273644 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.08245301361559373 + :electricity: 0.43696461787273644 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4676.730364 diff --git a/datasets/LT_lithuania/LT_lithuania.derived.ad b/datasets/LT_lithuania/LT_lithuania.derived.ad index 37551800ed..5da71fa7d6 100644 --- a/datasets/LT_lithuania/LT_lithuania.derived.ad +++ b/datasets/LT_lithuania/LT_lithuania.derived.ad @@ -1,6 +1,6 @@ - area = LT_lithuania -- id = 128454 -- parent_id = 128454 +- id = 128877 +- parent_id = 128877 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/LT_lithuania/emissions.csv b/datasets/LT_lithuania/emissions.csv index 1465fa5bcd..f4f42e1e85 100644 --- a/datasets/LT_lithuania/emissions.csv +++ b/datasets/LT_lithuania/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,18.54356 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,67.49972 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,4219.46902 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,12.23112 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,2.80813 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,5.8806 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,56.64535 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.07694 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,233.94169 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,327.58359 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,179.83734 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,159.47223 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,18.44015 -Industry,Other,non_energetic,co2,kton CO2-eq,619.80945 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,541.99469 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,2.04053 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.81211 -Industry,Steel,non_energetic,co2,kton CO2-eq,1.50895 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,152.3801 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,6035.06618 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,41.69347 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.22195 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,1.85874 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,70.95567 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,1.68071 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,956.68015 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1482.12407 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,127.29278 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18.54356 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,80.19743 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,67.49972 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,8920.36638 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,4219.46902 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,3058.75397 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,52.2906 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,12.23112 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,398.90928 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,3.00397 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,2.80813 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,302.1744 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,2.82704 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,5.8806 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,12002.94991 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,26.51526 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,56.64535 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,9.32992 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0311 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.07694 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,23.88492 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,233.94169 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,296.05152 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,327.58359 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,24.3504 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,5.87328 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,2361.46262 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,221.33052 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,179.83734 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,1236.55814 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,794.11716 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,159.47223 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,6105.81703 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,51.79608 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18.44015 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,2136.55075 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,619.80945 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,85.41126 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,541.99469 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.02275 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,1509.63556 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,3.06862 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,2.04053 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.81394 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.81211 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,16.98431 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1.50895 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,116.24946 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,152.3801 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,5464.13463 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,6035.06618 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,34.34641 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,41.69347 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.3612 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.00272 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.22195 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,64.28199 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.06354 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,1.85874 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,5621.74869 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,125.59659 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,70.95567 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,2.65932 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,1.68071 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1686.24817 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,956.68015 diff --git a/datasets/LT_lithuania/graph_values.yml b/datasets/LT_lithuania/graph_values.yml index a57a105de3..595d320655 100644 --- a/datasets/LT_lithuania/graph_values.yml +++ b/datasets/LT_lithuania/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/LU_luxembourg/LU_luxembourg.derived.ad b/datasets/LU_luxembourg/LU_luxembourg.derived.ad index c9ee671291..2b769aa582 100644 --- a/datasets/LU_luxembourg/LU_luxembourg.derived.ad +++ b/datasets/LU_luxembourg/LU_luxembourg.derived.ad @@ -1,6 +1,6 @@ - area = LU_luxembourg -- id = 128455 -- parent_id = 128455 +- id = 128878 +- parent_id = 128878 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/LU_luxembourg/emissions.csv b/datasets/LU_luxembourg/emissions.csv index 807ff1ae96..ad9a6a2e19 100644 --- a/datasets/LU_luxembourg/emissions.csv +++ b/datasets/LU_luxembourg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1.09005 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,14.26811 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,676.59729 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,3.06743 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,14.19231 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0039 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,7.32427 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.04149 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,34.88012 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,10.20311 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,18.42594 -Industry,Other,non_energetic,co2,kton CO2-eq,493.65165 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,64.12974 -Industry,Other metals,non_energetic,co2,kton CO2-eq,2.2834 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,103.7048 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,8.50732 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,372.10194 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.00383 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,61.66777 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,92.98084 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,34.03663 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2.53272 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.09005 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,6.07712 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,14.26811 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,695.99373 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,676.59729 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,639.00472 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3.20829 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3.06743 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,394.40559 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,3.54066 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,14.19231 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.07359 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.00742 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.0039 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,32.45547 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,2.36594 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,7.32427 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.02624 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.04149 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,21.92198 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,34.88012 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,669.91698 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,12.2116 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,10.20311 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,6229.34258 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,15.15043 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,18.42594 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,613.47003 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,493.65165 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,9.27536 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,64.12974 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,2.2834 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,984.91339 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,103.7048 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,10.14308 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,8.50732 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,1.15211 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,372.10194 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,3.12403 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.01984 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.00383 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,2603.13603 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,27.82984 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,61.66777 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,116.39897 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,92.98084 diff --git a/datasets/LU_luxembourg/graph_values.yml b/datasets/LU_luxembourg/graph_values.yml index 66b9bccbdd..6c79b31afd 100644 --- a/datasets/LU_luxembourg/graph_values.yml +++ b/datasets/LU_luxembourg/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/LV_latvia/LV_latvia.derived.ad b/datasets/LV_latvia/LV_latvia.derived.ad index 4425429500..447ce42485 100644 --- a/datasets/LV_latvia/LV_latvia.derived.ad +++ b/datasets/LV_latvia/LV_latvia.derived.ad @@ -1,6 +1,6 @@ - area = LV_latvia -- id = 128456 -- parent_id = 128456 +- id = 128879 +- parent_id = 128879 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/LV_latvia/emissions.csv b/datasets/LV_latvia/emissions.csv index 981413a3f1..8102413432 100644 --- a/datasets/LV_latvia/emissions.csv +++ b/datasets/LV_latvia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,54.13349 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,54.8702 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,2143.48665 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,38.03259 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,4.53587 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,85.99352 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,39.74131 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.86717 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.01017 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,109.7108 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,162.53792 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,48.24104 -Industry,Other,non_energetic,co2,kton CO2-eq,620.04006 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,261.37152 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,1394.9977 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,3687.89446 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,12.67657 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.22314 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,47.14411 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.02893 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,575.72863 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1452.98965 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,66.80667 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,54.13349 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,364.84213 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,54.8702 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4665.63558 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,2143.48665 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2726.07255 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,125.11152 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,38.03259 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,221.14512 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,1.66856 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,4.53587 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,1515.48877 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,50.29574 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,85.99352 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,6096.57097 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,14.83812 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,39.74131 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,205.14567 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.47985 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.86717 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.01149 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.01017 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,277.2922 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,109.7108 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,1182.2145 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,246.07544 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,162.53792 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,3909.77846 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,55.54602 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,48.24104 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,582.4799 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,620.04006 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,4.30235 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,261.37152 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,69.55524 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.077 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,1008.86221 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,1394.9977 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,13398.94715 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,3687.89446 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,40.40904 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,12.67657 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.22314 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,3072.48616 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.3611 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,47.14411 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.57466 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.02893 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,804.45714 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,575.72863 diff --git a/datasets/LV_latvia/graph_values.yml b/datasets/LV_latvia/graph_values.yml index c8bd5482ce..2e3770f66b 100644 --- a/datasets/LV_latvia/graph_values.yml +++ b/datasets/LV_latvia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.22059349825737973 + :electricity: 0.49240140002562816 energy_chp_combined_cycle_ht_network_gas: demand: 15105.507757951265 full_load_hours: 2848.684457 output: :steam_hot_water: 0.22059349825737973 :electricity: 0.49240140002562816 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.22059349825737973 + :electricity: 0.49240140002562816 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2848.684457 diff --git a/datasets/MT_malta/MT_malta.derived.ad b/datasets/MT_malta/MT_malta.derived.ad index aad8decd34..fa9dab27b4 100644 --- a/datasets/MT_malta/MT_malta.derived.ad +++ b/datasets/MT_malta/MT_malta.derived.ad @@ -1,6 +1,6 @@ - area = MT_malta -- id = 128462 -- parent_id = 128462 +- id = 128885 +- parent_id = 128885 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/MT_malta/emissions.csv b/datasets/MT_malta/emissions.csv index 512c240595..49f15c27ac 100644 --- a/datasets/MT_malta/emissions.csv +++ b/datasets/MT_malta/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1.15707 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,86.41265 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.40812 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,3.76657 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,68.76701 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.80519 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.77465 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.033 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.12713 -Industry,Other,non_energetic,co2,kton CO2-eq,4.69287 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,222.27866 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5.34581 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.37045 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.02896 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,5.36936 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.55433 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,183.79959 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1.7479 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.14466 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.15707 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,108.76981 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,86.41265 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,164.59605 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.92967 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.40812 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,196.95695 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,1.20933 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,3.76657 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,956.00059 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,8.41968 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,68.76701 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,1758.5151 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,6.49581 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,0.80519 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,95.15697 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.42578 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.77465 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.16881 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,0.033 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,52.66759 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.15965 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.12713 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,4.97419 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,4.69287 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,2.36088 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,222.27866 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,5.34581 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.30084 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,0.37045 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,8.30053 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.79636 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.00704 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.02896 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,348.40371 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4.89411 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,5.36936 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.37012 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.55433 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,74.84657 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,183.79959 diff --git a/datasets/MT_malta/graph_values.yml b/datasets/MT_malta/graph_values.yml index f024702647..5a55240dd2 100644 --- a/datasets/MT_malta/graph_values.yml +++ b/datasets/MT_malta/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/NO_norway/NO_norway.derived.ad b/datasets/NO_norway/NO_norway.derived.ad index 9bac731030..acb743d5c5 100644 --- a/datasets/NO_norway/NO_norway.derived.ad +++ b/datasets/NO_norway/NO_norway.derived.ad @@ -1,6 +1,6 @@ - area = NO_norway -- id = 128467 -- parent_id = 128467 +- id = 128890 +- parent_id = 128890 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/NO_norway/emissions.csv b/datasets/NO_norway/emissions.csv index a31e6117fb..7e3f50b25e 100644 --- a/datasets/NO_norway/emissions.csv +++ b/datasets/NO_norway/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,4.62186 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,114.40563 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,4516.46047 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,14.14343 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,25.82008 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,79.21733 -Energy,CCUS,non_energetic,co2,kton CO2-eq,11.2613 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,44.92736 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,114.58277 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,876.55248 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,536.19877 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,15.26 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,225.46385 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,2016.311 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,157.41114 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,851.30909 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,73.89218 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,163.78672 -Industry,Food,non_energetic,co2,kton CO2-eq,105.387 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,45.64527 -Industry,Other,non_energetic,co2,kton CO2-eq,1099.55506 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,958.36396 -Industry,Other metals,non_energetic,co2,kton CO2-eq,2687.26557 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,5.37003 -Industry,Paper,non_energetic,co2,kton CO2-eq,8.2885 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,1.18815 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,41.93 -Industry,Steel,non_energetic,co2,kton CO2-eq,27.949 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,448.17188 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,15737.03115 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,260.35785 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.97979 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,245.25633 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,225.18086 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1347.34978 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,539.46967 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,6.66105 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,4.62186 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,231.52386 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,114.40563 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4715.03725 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,4516.46047 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,1186.62832 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,9.91426 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,14.14343 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,642.92814 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,9.17894 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,25.82008 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,2301.77739 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,72.08733 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,79.21733 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,11.2613 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,316.30234 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,6.1425 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,44.92736 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,5862.85661 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,58.61186 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,114.58277 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,1688.98237 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,876.55248 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,510.95146 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,536.19877 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,15.26 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,1412.21168 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,469.33935 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,225.46385 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,1419.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,2016.311 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,3499.84283 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,157.41114 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1250.34748 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,851.30909 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,80.95576 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,73.89218 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,795.193 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,1772.585 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,163.78672 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,20.78686 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,105.387 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,3377.9602 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,37.26792 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,45.64527 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,900.99801 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1099.55506 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,85.43988 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,958.36396 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,2735.5835 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,2687.26557 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,2113.80636 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,5.37003 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,10.48547 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,8.2885 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,945.01605 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,3.54112 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,1.18815 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,716.521 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,84.53041 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,41.93 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,12.35047 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,27.949 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,402.3647 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,448.17188 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,10230.92011 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,15737.03115 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,592.7087 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,260.35785 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,487.49067 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4.03851 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.97979 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,10498.94929 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,173.84637 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,245.25633 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,13.64098 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,225.18086 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,2657.63653 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1347.34978 diff --git a/datasets/NO_norway/graph_values.yml b/datasets/NO_norway/graph_values.yml index 1572b6a9a4..8d9bdfe265 100644 --- a/datasets/NO_norway/graph_values.yml +++ b/datasets/NO_norway/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 1.0 :electricity: 0.0 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.4 + :electricity: 0.588 energy_chp_combined_cycle_ht_network_gas: demand: 12588.857142857143 full_load_hours: 4589.25 output: :steam_hot_water: 0.4 :electricity: 0.588 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.4 + :electricity: 0.588 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4589.25 diff --git a/datasets/PL_poland/PL_poland.derived.ad b/datasets/PL_poland/PL_poland.derived.ad index 6b554039b5..5f970b5eb5 100644 --- a/datasets/PL_poland/PL_poland.derived.ad +++ b/datasets/PL_poland/PL_poland.derived.ad @@ -1,6 +1,6 @@ - area = PL_poland -- id = 128457 -- parent_id = 128457 +- id = 128880 +- parent_id = 128880 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PL_poland/emissions.csv b/datasets/PL_poland/emissions.csv index 190ef18e84..b7660a75a1 100644 --- a/datasets/PL_poland/emissions.csv +++ b/datasets/PL_poland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1185.633 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,1122.66833 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,31472.48796 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,101.35549 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,24.61468 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,8.38577 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,629.99109 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,5.45809 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,4343.70772 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,19303.25909 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,3943.09905 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1147.04657 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,97.13051 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,404.74724 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,310.22258 -Industry,Other,non_energetic,co2,kton CO2-eq,12163.03302 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,5528.74371 -Industry,Other metals,non_energetic,co2,kton CO2-eq,479.70724 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,1.83464 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,7.6528 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,36.24173 -Industry,Steel,non_energetic,co2,kton CO2-eq,1897.14963 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,12.67723 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,1771.19819 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,20065.7024 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,484.28068 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.84757 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,740.29935 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,259.96695 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,4922.1553 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7810.46836 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,736.956 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1185.633 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,2906.62006 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,1122.66833 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,46384.72262 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,31472.48796 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,9714.77053 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,67.43258 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,101.35549 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,639.63744 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,4.86661 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,24.61468 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,1265.34552 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,12.05508 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,8.38577 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,227279.46095 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,913.55794 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,629.99109 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,4845.86737 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,8.16077 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,5.45809 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,4235.47815 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,4343.70772 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,24909.73021 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,19303.25909 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,104.15083 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,10.01092 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,35222.49616 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2931.85302 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,3943.09905 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,78.1558 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,127.47165 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1353.3953 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1147.04657 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,474.95995 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,97.13051 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2344.25651 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,2704.18826 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,404.74724 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,42621.39221 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,209.35044 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,310.22258 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,9068.49587 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,12163.03302 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,107.1111 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,5528.74371 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,615.36756 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,479.70724 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,2.4808 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,1.83464 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2169.13087 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,13.25642 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,7.6528 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.128 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,36.24173 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,4958.82573 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,1897.14963 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,23.0877 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,12.67723 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,1674.07843 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,1771.19819 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,30167.74144 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,20065.7024 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,283.92691 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,484.28068 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.84757 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,20971.9308 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,470.31778 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,740.29935 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,340.98767 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,259.96695 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,17801.29547 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,4922.1553 diff --git a/datasets/PL_poland/graph_values.yml b/datasets/PL_poland/graph_values.yml index da50949ec1..018e44d11d 100644 --- a/datasets/PL_poland/graph_values.yml +++ b/datasets/PL_poland/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.35435702354463866 :electricity: 0.22895940836492618 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.24553015300496608 + :electricity: 0.6272907176674158 energy_chp_combined_cycle_ht_network_gas: demand: 84822.40752398729 full_load_hours: 8402.910152 output: :steam_hot_water: 0.24553015300496608 :electricity: 0.6272907176674158 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.24553015300496608 + :electricity: 0.6272907176674158 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8402.910152 diff --git a/datasets/PT_portugal/PT_portugal.derived.ad b/datasets/PT_portugal/PT_portugal.derived.ad index ed2b473fc2..795b0f20af 100644 --- a/datasets/PT_portugal/PT_portugal.derived.ad +++ b/datasets/PT_portugal/PT_portugal.derived.ad @@ -1,6 +1,6 @@ - area = PT_portugal -- id = 128458 -- parent_id = 128458 +- id = 128881 +- parent_id = 128881 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PT_portugal/emissions.csv b/datasets/PT_portugal/emissions.csv index 9150fad410..7f9808d856 100644 --- a/datasets/PT_portugal/emissions.csv +++ b/datasets/PT_portugal/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,52.64543 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,41.48118 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,7207.13423 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,9.55675 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,35.24769 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,28.99991 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,133.97386 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,134.68997 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,81.85073 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,319.6619 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,639.58951 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,30.33206 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,32.08748 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,156.85291 -Industry,Other,non_energetic,co2,kton CO2-eq,3256.86233 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,3218.47886 -Industry,Other metals,non_energetic,co2,kton CO2-eq,12.84612 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,2.1849 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,1e-05 -Industry,Steel,non_energetic,co2,kton CO2-eq,80.92156 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,676.2827 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5174.82086 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,143.87944 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.46092 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,181.31167 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,27.49684 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,5194.92963 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,719.39906 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,37.18321 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,52.64543 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,48.44833 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,41.48118 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,7290.72444 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,7207.13423 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,704.48264 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3.2754 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,9.55675 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,1532.67365 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,14.89859 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,35.24769 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,1399.96815 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,13.27403 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,28.99991 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,14354.84069 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,45.10949 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,133.97386 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,140.71381 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.75031 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,56.16077 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,134.68997 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,161.43882 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,81.85073 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,1639.9023 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,631.04838 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,319.6619 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,645.07427 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,639.58951 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,28.58774 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,30.33206 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,763.47147 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,460.39521 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,32.08748 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,8854.54842 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,147.88753 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,156.85291 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,3914.20672 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,3256.86233 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,73.71816 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,3218.47886 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,6.62586 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,12.84612 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,1870.04682 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,3.9696 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,2.1849 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.42538 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,1e-05 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,1e-05 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,439.62196 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,80.92156 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.6735 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5705.17484 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,1432.613 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,676.2827 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5174.82086 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,78.26916 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,143.87944 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,96.10977 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.73124 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.46092 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,11017.66892 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,205.8719 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,181.31167 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,7.07365 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,27.49684 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,5103.16895 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5194.92963 diff --git a/datasets/PT_portugal/graph_values.yml b/datasets/PT_portugal/graph_values.yml index b0c78201c8..c5ffa422fa 100644 --- a/datasets/PT_portugal/graph_values.yml +++ b/datasets/PT_portugal/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.7974194413 + :electricity: 0.4909734645 energy_chp_combined_cycle_ht_network_gas: demand: 471.86426613849585 full_load_hours: 6310.325516 output: :steam_hot_water: 0.7974194413 :electricity: 0.4909734645 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.7974194413 + :electricity: 0.4909734645 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 6310.325516 diff --git a/datasets/PV20_groningen/PV20_groningen.derived.ad b/datasets/PV20_groningen/PV20_groningen.derived.ad index 20575d774d..688a714a7f 100644 --- a/datasets/PV20_groningen/PV20_groningen.derived.ad +++ b/datasets/PV20_groningen/PV20_groningen.derived.ad @@ -1,6 +1,6 @@ - area = PV20_groningen -- id = 128474 -- parent_id = 128474 +- id = 129931 +- parent_id = 129931 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV20_groningen/emissions.csv b/datasets/PV20_groningen/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV20_groningen/emissions.csv +++ b/datasets/PV20_groningen/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV20_groningen/graph_values.yml b/datasets/PV20_groningen/graph_values.yml index f7643b9259..1846ad25b9 100644 --- a/datasets/PV20_groningen/graph_values.yml +++ b/datasets/PV20_groningen/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 69451.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.14979588602245614 - :network_gas: 0.17612262687649127 - :ambient_heat: 0.6740814871010526 + :electricity: 0.18095954666091138 + :network_gas: 0.18568083955657255 + :ambient_heat: 0.633359613782516 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 283315.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 7538.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.20891116280473276 - :network_gas: 0.16435534878106683 - :ambient_heat: 0.6267334884142005 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769945 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV21_fryslan/PV21_fryslan.derived.ad b/datasets/PV21_fryslan/PV21_fryslan.derived.ad index e0f31af230..f94cdf633b 100644 --- a/datasets/PV21_fryslan/PV21_fryslan.derived.ad +++ b/datasets/PV21_fryslan/PV21_fryslan.derived.ad @@ -1,6 +1,6 @@ - area = PV21_fryslan -- id = 128477 -- parent_id = 128477 +- id = 129934 +- parent_id = 129934 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV21_fryslan/emissions.csv b/datasets/PV21_fryslan/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV21_fryslan/emissions.csv +++ b/datasets/PV21_fryslan/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV21_fryslan/graph_values.yml b/datasets/PV21_fryslan/graph_values.yml index 5f83f0efd3..d900373fd3 100644 --- a/datasets/PV21_fryslan/graph_values.yml +++ b/datasets/PV21_fryslan/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 75759.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15175005527470972 - :network_gas: 0.1653746959890966 - :ambient_heat: 0.6828752487361938 + :electricity: 0.18345014278882243 + :network_gas: 0.17447314045858264 + :ambient_heat: 0.6420767167525949 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 302954.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 14218.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2114522189001942 - :network_gas: 0.15419112439922103 - :ambient_heat: 0.6343566567005848 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV22_drenthe/PV22_drenthe.derived.ad b/datasets/PV22_drenthe/PV22_drenthe.derived.ad index 2a54160cc6..1d5cce47af 100644 --- a/datasets/PV22_drenthe/PV22_drenthe.derived.ad +++ b/datasets/PV22_drenthe/PV22_drenthe.derived.ad @@ -1,6 +1,6 @@ - area = PV22_drenthe -- id = 128472 -- parent_id = 128472 +- id = 129929 +- parent_id = 129929 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV22_drenthe/emissions.csv b/datasets/PV22_drenthe/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV22_drenthe/emissions.csv +++ b/datasets/PV22_drenthe/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV22_drenthe/graph_values.yml b/datasets/PV22_drenthe/graph_values.yml index ec6b8aaf8e..08014c33d2 100644 --- a/datasets/PV22_drenthe/graph_values.yml +++ b/datasets/PV22_drenthe/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 51337.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1517368409257958 - :network_gas: 0.16544737490812306 - :ambient_heat: 0.6828157841660812 + :electricity: 0.18343328919958857 + :network_gas: 0.17454898172194028 + :ambient_heat: 0.6420177290784712 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 223763.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 1401.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2114350508081594 - :network_gas: 0.15425979676736012 - :ambient_heat: 0.6343051524244805 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV23_overijssel/PV23_overijssel.derived.ad b/datasets/PV23_overijssel/PV23_overijssel.derived.ad index dd4feffa0a..0f2acf46b4 100644 --- a/datasets/PV23_overijssel/PV23_overijssel.derived.ad +++ b/datasets/PV23_overijssel/PV23_overijssel.derived.ad @@ -1,6 +1,6 @@ - area = PV23_overijssel -- id = 128476 -- parent_id = 128476 +- id = 129933 +- parent_id = 129933 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV23_overijssel/emissions.csv b/datasets/PV23_overijssel/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV23_overijssel/emissions.csv +++ b/datasets/PV23_overijssel/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV23_overijssel/graph_values.yml b/datasets/PV23_overijssel/graph_values.yml index a56e50b5ab..b39207b053 100644 --- a/datasets/PV23_overijssel/graph_values.yml +++ b/datasets/PV23_overijssel/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 127436.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15432355882915233 - :network_gas: 0.15122042643966213 - :ambient_heat: 0.6944560147311855 + :electricity: 0.18673547192684983 + :network_gas: 0.15968913754288183 + :ambient_heat: 0.6535753905302684 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 514189.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 20793.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21479186687994847 - :network_gas: 0.1408325324802038 - :ambient_heat: 0.6443756006398478 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV24_flevoland/PV24_flevoland.derived.ad b/datasets/PV24_flevoland/PV24_flevoland.derived.ad index d19e8af4f4..39909833e1 100644 --- a/datasets/PV24_flevoland/PV24_flevoland.derived.ad +++ b/datasets/PV24_flevoland/PV24_flevoland.derived.ad @@ -1,6 +1,6 @@ - area = PV24_flevoland -- id = 128470 -- parent_id = 128470 +- id = 129927 +- parent_id = 129927 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV24_flevoland/emissions.csv b/datasets/PV24_flevoland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV24_flevoland/emissions.csv +++ b/datasets/PV24_flevoland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV24_flevoland/graph_values.yml b/datasets/PV24_flevoland/graph_values.yml index 9a79df6989..98fc64b23c 100644 --- a/datasets/PV24_flevoland/graph_values.yml +++ b/datasets/PV24_flevoland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 37735.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1638570529384666 - :network_gas: 0.09878620883843357 - :ambient_heat: 0.7373567382230998 + :electricity: 0.19895956546068305 + :network_gas: 0.10468063554709728 + :ambient_heat: 0.6963597989922197 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 172035.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 348.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2270971370308447 - :network_gas: 0.09161145187661882 - :ambient_heat: 0.6812914110925364 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV25_gelderland/PV25_gelderland.derived.ad b/datasets/PV25_gelderland/PV25_gelderland.derived.ad index 2a70fd0b46..7188344b92 100644 --- a/datasets/PV25_gelderland/PV25_gelderland.derived.ad +++ b/datasets/PV25_gelderland/PV25_gelderland.derived.ad @@ -1,6 +1,6 @@ - area = PV25_gelderland -- id = 128478 -- parent_id = 128478 +- id = 129935 +- parent_id = 129935 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV25_gelderland/emissions.csv b/datasets/PV25_gelderland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV25_gelderland/emissions.csv +++ b/datasets/PV25_gelderland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV25_gelderland/graph_values.yml b/datasets/PV25_gelderland/graph_values.yml index 378e4f5140..0137988a92 100644 --- a/datasets/PV25_gelderland/graph_values.yml +++ b/datasets/PV25_gelderland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 235258.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1548952093967853 - :network_gas: 0.14807634831768074 - :ambient_heat: 0.6970284422855338 + :electricity: 0.18746607124768458 + :network_gas: 0.15640143575239554 + :ambient_heat: 0.65613249299992 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 920676.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 22136.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2155326622798746 - :network_gas: 0.13786935088049934 - :ambient_heat: 0.6465979868396261 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV26_utrecht/PV26_utrecht.derived.ad b/datasets/PV26_utrecht/PV26_utrecht.derived.ad index 95a6538127..5e2e26e190 100644 --- a/datasets/PV26_utrecht/PV26_utrecht.derived.ad +++ b/datasets/PV26_utrecht/PV26_utrecht.derived.ad @@ -1,6 +1,6 @@ - area = PV26_utrecht -- id = 128475 -- parent_id = 128475 +- id = 129932 +- parent_id = 129932 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV26_utrecht/emissions.csv b/datasets/PV26_utrecht/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV26_utrecht/emissions.csv +++ b/datasets/PV26_utrecht/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV26_utrecht/graph_values.yml b/datasets/PV26_utrecht/graph_values.yml index c3afa57d59..c00680990d 100644 --- a/datasets/PV26_utrecht/graph_values.yml +++ b/datasets/PV26_utrecht/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 146561.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1570360339703021 - :network_gas: 0.1363018131633383 - :ambient_heat: 0.7066621528663596 + :electricity: 0.19020486076204696 + :network_gas: 0.14407686476888185 + :ambient_heat: 0.6657182744690712 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 593037.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 35393.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21830358662806848 - :network_gas: 0.12678565348772372 - :ambient_heat: 0.6549107598842078 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV27_2022_noord_holland/PV27_2022_noord_holland.derived.ad b/datasets/PV27_2022_noord_holland/PV27_2022_noord_holland.derived.ad index a8a7d85b4e..2ab3dfc2f5 100644 --- a/datasets/PV27_2022_noord_holland/PV27_2022_noord_holland.derived.ad +++ b/datasets/PV27_2022_noord_holland/PV27_2022_noord_holland.derived.ad @@ -1,6 +1,6 @@ - area = PV27_2022_noord_holland -- id = 128482 -- parent_id = 128482 +- id = 129939 +- parent_id = 129939 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV27_2022_noord_holland/emissions.csv b/datasets/PV27_2022_noord_holland/emissions.csv index 88b5577c7b..43a489c495 100644 --- a/datasets/PV27_2022_noord_holland/emissions.csv +++ b/datasets/PV27_2022_noord_holland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2022,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2022,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2022,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2022,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2022,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2022,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2022,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2022,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2022,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2022,kton CO2-eq,0.0 diff --git a/datasets/PV27_2022_noord_holland/graph_values.yml b/datasets/PV27_2022_noord_holland/graph_values.yml index 3a0256f223..de8ad57d1a 100644 --- a/datasets/PV27_2022_noord_holland/graph_values.yml +++ b/datasets/PV27_2022_noord_holland/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.064036002 :electricity: 0.447862675 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.305 + :electricity: 0.433 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 5265.0 output: :steam_hot_water: 0.305 :electricity: 0.433 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.305 + :electricity: 0.433 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5265.0 diff --git a/datasets/PV27_noord_holland/PV27_noord_holland.derived.ad b/datasets/PV27_noord_holland/PV27_noord_holland.derived.ad index d415714b7e..981c4fa090 100644 --- a/datasets/PV27_noord_holland/PV27_noord_holland.derived.ad +++ b/datasets/PV27_noord_holland/PV27_noord_holland.derived.ad @@ -1,6 +1,6 @@ - area = PV27_noord_holland -- id = 128471 -- parent_id = 128471 +- id = 129928 +- parent_id = 129928 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV27_noord_holland/emissions.csv b/datasets/PV27_noord_holland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV27_noord_holland/emissions.csv +++ b/datasets/PV27_noord_holland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV27_noord_holland/graph_values.yml b/datasets/PV27_noord_holland/graph_values.yml index 577f67b99f..11cccfcdc7 100644 --- a/datasets/PV27_noord_holland/graph_values.yml +++ b/datasets/PV27_noord_holland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 382583.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15381080395810795 - :network_gas: 0.15404057823040632 - :ambient_heat: 0.6921486178114857 + :electricity: 0.18608039901836396 + :network_gas: 0.16263696997676283 + :ambient_heat: 0.6512826310048732 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1357257.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 77002.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.214127072922448 - :network_gas: 0.14349170831020555 - :ambient_heat: 0.6423812187673463 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853152 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649668 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV28_zuid_holland/PV28_zuid_holland.derived.ad b/datasets/PV28_zuid_holland/PV28_zuid_holland.derived.ad index 16f9c31265..3fe6440405 100644 --- a/datasets/PV28_zuid_holland/PV28_zuid_holland.derived.ad +++ b/datasets/PV28_zuid_holland/PV28_zuid_holland.derived.ad @@ -1,6 +1,6 @@ - area = PV28_zuid_holland -- id = 128479 -- parent_id = 128479 +- id = 129936 +- parent_id = 129936 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV28_zuid_holland/emissions.csv b/datasets/PV28_zuid_holland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV28_zuid_holland/emissions.csv +++ b/datasets/PV28_zuid_holland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV28_zuid_holland/graph_values.yml b/datasets/PV28_zuid_holland/graph_values.yml index 28d0fb1f72..eaf2885868 100644 --- a/datasets/PV28_zuid_holland/graph_values.yml +++ b/datasets/PV28_zuid_holland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 456582.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15577362305342887 - :network_gas: 0.14324507320614133 - :ambient_heat: 0.7009813037404299 + :electricity: 0.1885893251231618 + :network_gas: 0.15134678586118316 + :ambient_heat: 0.6600638890156552 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1708278.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 88420.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21667025416618768 - :network_gas: 0.13331898333524697 - :ambient_heat: 0.6500107624985654 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV29_zeeland/PV29_zeeland.derived.ad b/datasets/PV29_zeeland/PV29_zeeland.derived.ad index e7bb482fdf..e475a112e9 100644 --- a/datasets/PV29_zeeland/PV29_zeeland.derived.ad +++ b/datasets/PV29_zeeland/PV29_zeeland.derived.ad @@ -1,6 +1,6 @@ - area = PV29_zeeland -- id = 128473 -- parent_id = 128473 +- id = 129930 +- parent_id = 129930 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV29_zeeland/emissions.csv b/datasets/PV29_zeeland/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV29_zeeland/emissions.csv +++ b/datasets/PV29_zeeland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV29_zeeland/graph_values.yml b/datasets/PV29_zeeland/graph_values.yml index 197f634057..3cd1602efe 100644 --- a/datasets/PV29_zeeland/graph_values.yml +++ b/datasets/PV29_zeeland/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 56359.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.1533517437854568 - :network_gas: 0.15656540917998762 - :ambient_heat: 0.6900828470345556 + :electricity: 0.18549413408147392 + :network_gas: 0.16527516608199688 + :ambient_heat: 0.6492306998365293 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 188353.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 11311.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21353163732770455 - :network_gas: 0.1458734506891796 - :ambient_heat: 0.6405949119831159 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV30_noord_brabant/PV30_noord_brabant.derived.ad b/datasets/PV30_noord_brabant/PV30_noord_brabant.derived.ad index edf5f92c91..e45ca0d5a0 100644 --- a/datasets/PV30_noord_brabant/PV30_noord_brabant.derived.ad +++ b/datasets/PV30_noord_brabant/PV30_noord_brabant.derived.ad @@ -1,6 +1,6 @@ - area = PV30_noord_brabant -- id = 128480 -- parent_id = 128480 +- id = 129937 +- parent_id = 129937 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV30_noord_brabant/emissions.csv b/datasets/PV30_noord_brabant/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV30_noord_brabant/emissions.csv +++ b/datasets/PV30_noord_brabant/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV30_noord_brabant/graph_values.yml b/datasets/PV30_noord_brabant/graph_values.yml index 7533b5898e..62ab45bfcf 100644 --- a/datasets/PV30_noord_brabant/graph_values.yml +++ b/datasets/PV30_noord_brabant/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 294540.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15641822966877647 - :network_gas: 0.13969973682172945 - :ambient_heat: 0.7038820335094941 + :electricity: 0.18941405960014635 + :network_gas: 0.14763547524353832 + :ambient_heat: 0.6629504651563154 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 1149763.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 39498.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.21750449022131943 - :network_gas: 0.12998203911471992 - :ambient_heat: 0.6525134706639607 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133252 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/PV31_limburg/PV31_limburg.derived.ad b/datasets/PV31_limburg/PV31_limburg.derived.ad index cd66e8ad9d..a8a9c9280e 100644 --- a/datasets/PV31_limburg/PV31_limburg.derived.ad +++ b/datasets/PV31_limburg/PV31_limburg.derived.ad @@ -1,6 +1,6 @@ - area = PV31_limburg -- id = 128481 -- parent_id = 128481 +- id = 129938 +- parent_id = 129938 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/PV31_limburg/emissions.csv b/datasets/PV31_limburg/emissions.csv index 88b5577c7b..f5f3298f20 100644 --- a/datasets/PV31_limburg/emissions.csv +++ b/datasets/PV31_limburg/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,0.0 diff --git a/datasets/PV31_limburg/graph_values.yml b/datasets/PV31_limburg/graph_values.yml index edfbf4e407..6a8e10728b 100644 --- a/datasets/PV31_limburg/graph_values.yml +++ b/datasets/PV31_limburg/graph_values.yml @@ -101,9 +101,9 @@ buildings_solar_pv_solar_radiation: full_load_hours: 900.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.153893106553106 - :network_gas: 0.153587913957917 - :ambient_heat: 0.692518979488977 + :electricity: 0.186185535173166 + :network_gas: 0.16216385658269 + :ambient_heat: 0.651650608244144 buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 148103.0 bunkers_total_useful_demand_planes: @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.13834998 :electricity: 0.39285755 full_load_hours: 1650.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 2740.0 output: :steam_hot_water: 0.33 :electricity: 0.42 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.33 + :electricity: 0.42 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 2740.0 @@ -585,9 +593,9 @@ households_solar_pvt_solar_radiation: full_load_hours: 900.0 households_space_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.15477887518465777 - :network_gas: 0.1487161864843822 - :ambient_heat: 0.6965049383309599 + :electricity: 0.18731736679319552 + :network_gas: 0.15707060678408816 + :ambient_heat: 0.6556120264227163 households_useful_demand_for_hot_water_after_solar_heater: number_of_units: 518320.0 households_useful_demand_for_space_heating_apartments_1945_1964: @@ -632,9 +640,9 @@ households_useful_demand_for_space_heating_terraced_houses_before_1945: number_of_units: 24454.0 households_water_heater_hybrid_heatpump_air_water_electricity: input: - :electricity: 0.2153819366597145 - :network_gas: 0.13847225336113977 - :ambient_heat: 0.6461458099791457 + :electricity: 0.0 + :network_gas: 1.0 + :ambient_heat: 0.0 industry_aluminium_electrolysis_current_electricity: input: :electricity: 0.940352020860495 @@ -989,15 +997,15 @@ households_final_demand_coal-households_final_demand_for_space_heating_coal@coal households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 0.0 households_final_demand_electricity-households_final_demand_for_cooking_electricity@electricity: - parent_share: 0.03663165 + parent_share: 0.03716762 households_final_demand_electricity-households_final_demand_for_cooling_electricity@electricity: - parent_share: 0.01744423 + parent_share: 0.01769946 households_final_demand_electricity-households_final_demand_for_hot_water_electricity@electricity: - parent_share: 0.07891174 + parent_share: 0.03233881 households_final_demand_electricity-households_final_demand_for_lighting_electricity@electricity: - parent_share: 0.09711067 + parent_share: 0.09853151 households_final_demand_electricity-households_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.14133253 + parent_share: 0.17649669 households_final_demand_for_appliances_electricity-households_appliances_clothes_dryer_electricity@electricity: parent_share: 0.09763207 households_final_demand_for_appliances_electricity-households_appliances_computer_media_electricity@electricity: @@ -1021,43 +1029,43 @@ households_final_demand_for_cooling_electricity-households_cooling_airconditioni households_final_demand_for_cooling_electricity-households_cooling_heatpump_ground_water_electricity@electricity: parent_share: 0.00247742 households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.65236632 households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.23650675 households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99219873 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00780127 households_final_demand_for_lighting_electricity-households_lighting_efficient_fluorescent_electricity@electricity: parent_share: 0.2705314 households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.53140097 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: - parent_share: 0.39225995 + parent_share: 0.518305 households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: - parent_share: 0.50065881 + parent_share: 0.38324304 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: - parent_share: 0.02127438 + parent_share: 0.0381242 households_final_demand_for_space_heating_network_gas-households_space_heater_combined_network_gas@network_gas: - parent_share: 0.99838843 + parent_share: 0.99677957 households_final_demand_for_space_heating_network_gas-households_space_heater_hybrid_heatpump_air_water_electricity@network_gas: - parent_share: 0.00161157 + parent_share: 0.00322043 households_final_demand_for_space_heating_network_gas-households_space_heater_network_gas@network_gas: parent_share: 0.0 households_final_demand_ht_steam_hot_water-households_final_demand_for_hot_water_ht_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_lt_steam_hot_water-households_final_demand_for_hot_water_lt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_mt_steam_hot_water-households_final_demand_for_hot_water_mt_steam_hot_water@steam_hot_water: - parent_share: 0.43108992 + parent_share: 0.4384769 households_final_demand_network_gas-households_final_demand_for_cooking_network_gas@network_gas: - parent_share: 0.0240719 + parent_share: 0.02398274 households_final_demand_network_gas-households_final_demand_for_hot_water_network_gas@network_gas: - parent_share: 0.2654386 + parent_share: 0.2816303 households_final_demand_network_gas-households_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.7104895 + parent_share: 0.69438696 households_final_demand_wood_pellets-households_final_demand_for_hot_water_wood_pellets@wood_pellets: parent_share: 0.0 households_final_demand_wood_pellets-households_final_demand_for_space_heating_wood_pellets@wood_pellets: diff --git a/datasets/RO_romania/RO_romania.derived.ad b/datasets/RO_romania/RO_romania.derived.ad index a9ecfccf3d..632ea7236b 100644 --- a/datasets/RO_romania/RO_romania.derived.ad +++ b/datasets/RO_romania/RO_romania.derived.ad @@ -1,6 +1,6 @@ - area = RO_romania -- id = 128459 -- parent_id = 128459 +- id = 128882 +- parent_id = 128882 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/RO_romania/emissions.csv b/datasets/RO_romania/emissions.csv index 8ac1657861..d8b3a41139 100644 --- a/datasets/RO_romania/emissions.csv +++ b/datasets/RO_romania/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,127.2314 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,128.58293 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,19114.51816 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,47.70305 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,4.84424 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,1.03881 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,81.79216 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,2.78581 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,862.13812 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,9421.30631 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.64794 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,1239.05658 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,329.03768 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,3.43617 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,53.04299 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,4.9152 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,105.78743 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,58.69446 -Industry,Other,non_energetic,co2,kton CO2-eq,5472.57503 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1842.1163 -Industry,Other metals,non_energetic,co2,kton CO2-eq,8.90016 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,2.58999 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,8.61755 -Industry,Steel,non_energetic,co2,kton CO2-eq,3845.54931 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,4.81718 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,71.8782 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,48294.48275 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,2.10463 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.12424 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,260.80647 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,6.541 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,6548.48162 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1996.0091 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,11.95078 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,127.2314 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,182.51157 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,128.58293 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,34468.87021 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,19114.51816 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,47.70305 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,790.15917 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,6.01186 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,4.84424 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,1.03881 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,67009.14502 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,200.27711 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,81.79216 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,146.08543 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.48449 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,2.78581 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,1176.61651 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,862.13812 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,32998.37887 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,9421.30631 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,112.18552 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,14.9408 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.64794 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,8881.16876 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,497.46375 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1239.05658 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,268.3792 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,329.03768 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2530.06439 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,3.43617 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,770.3284 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,53.04299 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,629.40906 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,4.9152 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,4693.49546 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,3088.75596 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,105.78743 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,53970.33868 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,138.00667 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,58.69446 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,6714.93465 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,5472.57503 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,1.51009 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1842.1163 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,338.74371 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,8.90016 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,1.31896 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,4332.70179 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,5.9777 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,2.58999 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,16.39558 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,8.61755 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,12620.79618 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,3845.54931 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,22.25972 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,4.81718 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,195.93789 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,71.8782 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,28799.87116 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,48294.48275 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,1221.52653 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,8.46847 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,2.10463 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,65.39562 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,1.29322 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.12424 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,12005.28592 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,359.79601 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,260.80647 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,1.25627 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,6.541 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,5634.65674 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,6548.48162 diff --git a/datasets/RO_romania/graph_values.yml b/datasets/RO_romania/graph_values.yml index 306687c214..fc6fa52ac5 100644 --- a/datasets/RO_romania/graph_values.yml +++ b/datasets/RO_romania/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.9926206610112597 :electricity: 0.0 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.5249702442063336 + :electricity: 0.2873651680106701 energy_chp_combined_cycle_ht_network_gas: demand: 25455.716764228655 full_load_hours: 8000.0 output: :steam_hot_water: 0.5249702442063336 :electricity: 0.2873651680106701 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.5249702442063336 + :electricity: 0.2873651680106701 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/RS_serbia/RS_serbia.derived.ad b/datasets/RS_serbia/RS_serbia.derived.ad index 4df5f56779..578f48a61b 100644 --- a/datasets/RS_serbia/RS_serbia.derived.ad +++ b/datasets/RS_serbia/RS_serbia.derived.ad @@ -1,6 +1,6 @@ - area = RS_serbia -- id = 128468 -- parent_id = 128468 +- id = 128891 +- parent_id = 128891 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/RS_serbia/emissions.csv b/datasets/RS_serbia/emissions.csv index d0374b6dd7..53a56e5407 100644 --- a/datasets/RS_serbia/emissions.csv +++ b/datasets/RS_serbia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,30.08369 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,171.74351 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,5012.80378 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,13.21957 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,3.24517 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,116.59567 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,1.77034 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,32.62383 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,2311.63475 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,352.72652 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,6.26076 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0053 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,26.12201 -Industry,Other,non_energetic,co2,kton CO2-eq,1373.71701 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,228.19138 -Industry,Other metals,non_energetic,co2,kton CO2-eq,15.62085 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,71.5575 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.86332 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,3541.00078 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.00236 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,21.8593 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5118.79222 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,127.83217 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,3069.96678 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,58.0175 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.95467 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,30.08369 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,32.18084 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,171.74351 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,6505.97519 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,5012.80378 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,1854.25839 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,10.52605 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,13.21957 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,430.43 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,3.27488 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,3.24517 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,41668.52764 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.40659 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,116.59567 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,41.90418 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.17341 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,1.77034 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,1498.21167 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,32.62383 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2622.71445 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,2311.63475 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,4676.5255 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,485.97556 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,352.72652 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,453.35953 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,6.26076 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,19.61473 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,334.86981 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,563.44433 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0053 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,7811.33731 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,21.52825 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,26.12201 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,2281.55411 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1373.71701 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,228.19138 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,74.10444 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,15.62085 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,136.018 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,71.5575 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,838.92503 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,1.7175 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.86332 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,1652.68 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,3541.00078 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.00236 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,39.0129 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,21.8593 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,1450.85943 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5118.79222 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,4470.97834 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,88.95529 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,127.83217 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4300.39099 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,3069.96678 diff --git a/datasets/RS_serbia/graph_values.yml b/datasets/RS_serbia/graph_values.yml index 892d88b5cd..2fa54b4a82 100644 --- a/datasets/RS_serbia/graph_values.yml +++ b/datasets/RS_serbia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.5410131207311693 :electricity: 0.05879056211311784 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.40299999999999997 + :electricity: 0.28600000000000003 energy_chp_combined_cycle_ht_network_gas: demand: 9969.150349650348 full_load_hours: 4589.25 output: :steam_hot_water: 0.40299999999999997 :electricity: 0.28600000000000003 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.40299999999999997 + :electricity: 0.28600000000000003 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4589.25 diff --git a/datasets/SE_sweden/SE_sweden.derived.ad b/datasets/SE_sweden/SE_sweden.derived.ad index c7955f8939..1cbabd0bd3 100644 --- a/datasets/SE_sweden/SE_sweden.derived.ad +++ b/datasets/SE_sweden/SE_sweden.derived.ad @@ -1,6 +1,6 @@ - area = SE_sweden -- id = 128460 -- parent_id = 128460 +- id = 128883 +- parent_id = 128883 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/SE_sweden/emissions.csv b/datasets/SE_sweden/emissions.csv index 30f39398ef..0687007954 100644 --- a/datasets/SE_sweden/emissions.csv +++ b/datasets/SE_sweden/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,24.16383 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,122.8464 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,6575.96263 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,7.36454 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,32.33917 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,110.07248 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,251.27758 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.2469 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,66.4468 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,35.76789 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,100.69912 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,177.16216 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,44.32182 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,906.3576 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1.7945 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,24.69058 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,137.20653 -Industry,Other,non_energetic,co2,kton CO2-eq,2139.85343 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1046.89105 -Industry,Other metals,non_energetic,co2,kton CO2-eq,447.5735 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.9464 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.02435 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,87.80617 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,1.55641 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,2962.22388 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.33051 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,1586.83703 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,39842.4798 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,5.02753 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,217.15969 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,119.819 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1026.82614 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,1600.37274 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,26.30002 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,24.16383 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,177.75165 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,122.8464 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,7468.56152 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,6575.96263 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,2775.97249 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,15.25776 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,7.36454 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,1334.93932 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,17.03276 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,32.33917 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,2333.49709 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,33.60131 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,110.07248 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,7667.86087 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,109.53499 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,251.27758 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,300.31604 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.24112 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.2469 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,119.64051 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,66.4468 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,76.88556 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,35.76789 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,6298.96585 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,171.27466 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,100.69912 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,132.86012 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,177.16216 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,510.9436 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,44.32182 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,581.99911 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,906.3576 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,19.22129 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,1.7945 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,695.625 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,24.69058 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,10718.23896 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,140.20295 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,137.20653 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,2083.9163 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,2139.85343 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,164.42662 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1046.89105 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,503.36167 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,447.5735 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,24.25137 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.9464 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.59049 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.02435 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,63.43582 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,87.80617 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,1777.89306 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,2.0028 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,1.55641 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,216.58438 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,13.37798 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,2626.04596 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,2962.22388 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,21.04291 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.33051 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,1632.46776 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,1586.83703 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,47967.94624 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,39842.4798 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,1053.32543 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,17.0921 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,5.02753 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,18830.34842 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,340.34244 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,217.15969 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,43.85451 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,119.819 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4088.39357 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1026.82614 diff --git a/datasets/SE_sweden/graph_values.yml b/datasets/SE_sweden/graph_values.yml index 3264ff1eb8..bfd08f94ab 100644 --- a/datasets/SE_sweden/graph_values.yml +++ b/datasets/SE_sweden/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.44018763702279323 :electricity: 0.33774664102783936 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.7726122565480932 energy_chp_combined_cycle_ht_network_gas: demand: 4286.837802970056 full_load_hours: 4085.457536 output: :steam_hot_water: 0.42 :electricity: 0.7726122565480932 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.7726122565480932 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4085.457536 diff --git a/datasets/SG_singapore/SG_singapore.derived.ad b/datasets/SG_singapore/SG_singapore.derived.ad index b3bb3e4f4e..e6057d0332 100644 --- a/datasets/SG_singapore/SG_singapore.derived.ad +++ b/datasets/SG_singapore/SG_singapore.derived.ad @@ -1,6 +1,6 @@ - area = SG_singapore -- id = 128464 -- parent_id = 128464 +- id = 128887 +- parent_id = 128887 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/SG_singapore/emissions.csv b/datasets/SG_singapore/emissions.csv index 245d82db84..7feca7e876 100644 --- a/datasets/SG_singapore/emissions.csv +++ b/datasets/SG_singapore/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.09009 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,8.172 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,1.17995 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,119.93214 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,1399.48185 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,85.67697 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,683.59227 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,37.43392 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.60669 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1079.14745 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,26.74507 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,26.73832 -Industry,Other,non_energetic,co2,kton CO2-eq,32.51622 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,5430.68245 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,10.23226 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,5.67063 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,172.33727 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,219.8574 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,83.73684 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.11007 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.09009 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,6.96972 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,8.172 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,294.54454 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.83705 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.17995 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,119.93214 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,58412.53594 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,549.96947 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,1399.48185 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,20793.34755 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,87.07639 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,85.67697 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,303.10959 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,683.59227 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,12.73048 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,37.43392 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,345.86341 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.94867 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.60669 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,145.52552 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,1079.14745 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.36968 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,26.74507 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,10430.24746 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,22.03245 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,26.73832 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,9.6745 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,32.51622 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,1043.52025 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,5430.68245 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,10.23226 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,7.84581 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,5.67063 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,6.84471 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,5840.53439 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,141.48855 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,172.33727 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,103.84587 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,219.8574 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,109.93534 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,83.73684 diff --git a/datasets/SG_singapore/graph_values.yml b/datasets/SG_singapore/graph_values.yml index 5a0cb34dab..c69cf12174 100644 --- a/datasets/SG_singapore/graph_values.yml +++ b/datasets/SG_singapore/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.4410161562452206 + :electricity: 0.3444354433827515 energy_chp_combined_cycle_ht_network_gas: demand: 185039.9 full_load_hours: 4783.19661 output: :steam_hot_water: 0.4410161562452206 :electricity: 0.3444354433827515 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.4410161562452206 + :electricity: 0.3444354433827515 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 4783.19661 diff --git a/datasets/SI_slovenia/SI_slovenia.derived.ad b/datasets/SI_slovenia/SI_slovenia.derived.ad index 1624f1d28d..b46f2d8e79 100644 --- a/datasets/SI_slovenia/SI_slovenia.derived.ad +++ b/datasets/SI_slovenia/SI_slovenia.derived.ad @@ -1,6 +1,6 @@ - area = SI_slovenia -- id = 128461 -- parent_id = 128461 +- id = 128884 +- parent_id = 128884 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/SI_slovenia/emissions.csv b/datasets/SI_slovenia/emissions.csv index 7215ac0aea..25a1a8fc32 100644 --- a/datasets/SI_slovenia/emissions.csv +++ b/datasets/SI_slovenia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,21.4335 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,28.18226 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,1779.66816 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,1.55712 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.58768 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,5.78887 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,23.20932 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0002 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,124.60322 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,284.21265 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,149.07051 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,110.50415 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,10.6163 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,60.30257 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,22.29351 -Industry,Other,non_energetic,co2,kton CO2-eq,597.83894 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,357.41468 -Industry,Other metals,non_energetic,co2,kton CO2-eq,9.00267 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,58.87043 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,38.95208 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,3383.77256 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.03026 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.00059 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,62.39659 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,20.56081 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,453.48137 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,165.66384 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,16.56136 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,21.4335 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,56.21332 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,28.18226 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1895.08847 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1779.66816 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,623.61393 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,24.78595 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.55712 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,48.87583 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.37187 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,0.58768 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,5.78887 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,6096.39144 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,24.31142 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,23.20932 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,82.16533 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.20244 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.0002 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,100.81898 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,124.60322 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,459.74398 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,284.21265 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,16.09129 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,3.88119 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,896.3712 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,177.91056 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,149.07051 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,170.11779 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,110.50415 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,186.61628 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,10.6163 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,66.99087 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,60.30257 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,1.11184 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,3066.27615 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,28.80319 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,22.29351 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,702.59833 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,597.83894 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,47.23085 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,357.41468 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,129.1517 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,9.00267 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.47323 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,170.92264 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.26289 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.38198 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.6129 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,58.87043 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,69.32095 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,38.95208 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,4463.87908 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,3383.77256 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,31.75372 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.24159 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.03026 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.00059 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,2673.7969 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,64.12601 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,62.39659 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,1.99546 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,20.56081 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,771.36874 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,453.48137 diff --git a/datasets/SI_slovenia/graph_values.yml b/datasets/SI_slovenia/graph_values.yml index 659b2d81da..c1e598986a 100644 --- a/datasets/SI_slovenia/graph_values.yml +++ b/datasets/SI_slovenia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.4 :electricity: 0.4 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 8000.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 8000.0 diff --git a/datasets/SK_slovakia/SK_slovakia.derived.ad b/datasets/SK_slovakia/SK_slovakia.derived.ad index bf46b01ae5..0229fd9f4e 100644 --- a/datasets/SK_slovakia/SK_slovakia.derived.ad +++ b/datasets/SK_slovakia/SK_slovakia.derived.ad @@ -1,6 +1,6 @@ - area = SK_slovakia -- id = 128436 -- parent_id = 128436 +- id = 128859 +- parent_id = 128859 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/SK_slovakia/emissions.csv b/datasets/SK_slovakia/emissions.csv index e7c56ab359..525beb245a 100644 --- a/datasets/SK_slovakia/emissions.csv +++ b/datasets/SK_slovakia/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,26.90104 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,68.24966 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,2460.7653 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,15.62766 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,1.38692 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.15482 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,41.52938 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.34749 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,19.07983 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,510.34888 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,256.62192 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,274.71431 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,4.66855 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,718.68 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.30539 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,81.38773 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,48.94158 -Industry,Other,non_energetic,co2,kton CO2-eq,2319.9123 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,756.36125 -Industry,Other metals,non_energetic,co2,kton CO2-eq,239.11468 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,1.03281 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,3.17935 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,5.86515 -Industry,Steel,non_energetic,co2,kton CO2-eq,3554.28066 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,70.49661 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5585.29421 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,45.3009 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,1.01442 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.38923 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,87.35867 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,3.05156 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,1874.53364 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,146.45259 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,9.32324 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,26.90104 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,61.01708 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,68.24966 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,6007.28688 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,2460.7653 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,4147.5092 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,19.04794 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,15.62766 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,67.07624 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.50097 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,1.38692 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,64.57655 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.63269 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,0.15482 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,14700.15191 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,58.81244 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,41.52938 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,1318.94773 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.36749 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,0.34749 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,24.18262 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,19.07983 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2667.87931 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,510.34888 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,6773.35716 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,447.52836 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,256.62192 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,121.32 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,274.71431 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,283.04563 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,4.66855 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,545.79129 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,718.68 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.11193 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,0.30539 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,331.77339 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,1015.71104 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,81.38773 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,16027.09367 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,67.71171 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,48.94158 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,2764.50908 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,2319.9123 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,14.63516 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,756.36125 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,296.73932 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,239.11468 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,1.03281 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,2873.47018 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,7.64853 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,3.17935 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,7.14187 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,5.86515 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,4167.9749 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,3554.28066 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,130.70593 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,70.49661 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,9463.51038 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5585.29421 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,87.76927 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,45.3009 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,475.86303 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,3.11241 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1.01442 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,1813.95454 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,1.73555 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.38923 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,4879.07344 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,121.55284 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,87.35867 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,3.65348 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,3.05156 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1533.18285 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,1874.53364 diff --git a/datasets/SK_slovakia/graph_values.yml b/datasets/SK_slovakia/graph_values.yml index 7476fc0c82..dcea97ede6 100644 --- a/datasets/SK_slovakia/graph_values.yml +++ b/datasets/SK_slovakia/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.052881017710152155 :electricity: 0.6609129458717885 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.3799341671747943 + :electricity: 0.5140223809276224 energy_chp_combined_cycle_ht_network_gas: demand: 7333.788498278265 full_load_hours: 7504.125799 output: :steam_hot_water: 0.3799341671747943 :electricity: 0.5140223809276224 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.3799341671747943 + :electricity: 0.5140223809276224 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 7504.125799 diff --git a/datasets/UKNI01_northern_ireland/UKNI01_northern_ireland.derived.ad b/datasets/UKNI01_northern_ireland/UKNI01_northern_ireland.derived.ad index ac204ae31e..653951b59a 100644 --- a/datasets/UKNI01_northern_ireland/UKNI01_northern_ireland.derived.ad +++ b/datasets/UKNI01_northern_ireland/UKNI01_northern_ireland.derived.ad @@ -1,6 +1,11 @@ - area = UKNI01_northern_ireland -- id = 128434 -- parent_id = 128434 +<<<<<<< Updated upstream +- id = 128857 +- parent_id = 128857 +======= +- id = 127077 +- parent_id = 127077 +>>>>>>> Stashed changes - group = country - enabled.etengine = true - enabled.etmodel = true @@ -20,8 +25,13 @@ - has_aquathermal_potential_for_surface_water = false - has_aquathermal_potential_for_waste_water = false - has_aquathermal_potential_for_drink_water = false +<<<<<<< Updated upstream - co2_emission_1990_aviation_bunkers = 0.063173423 - co2_emission_1990_marine_bunkers = 0.125350048 +======= +- co2_emission_1990_aviation_bunkers = 0.063 +- co2_emission_1990_marine_bunkers = 0.125 +>>>>>>> Stashed changes - co2_percentage_free = 0.4 - co2_price = 0.02483 - captured_biogenic_co2_price = 0.02483 @@ -115,16 +125,16 @@ - heat_lt_sub_station_investment_costs_eur_per_kw = 100.0 - heat_lt_distribution_pipelines_investment_costs_eur_per_meter = 2046.0 - heat_lt_primary_pipelines_investment_costs_per_kw = 245.0 -- heat_length_of_distribution_pipelines_in_meter_per_residence_object_first_bracket = 3.509024 -- heat_length_of_distribution_pipelines_in_meter_per_residence_object_second_bracket = 4.101771 -- heat_length_of_distribution_pipelines_in_meter_per_residence_object_third_bracket = 4.600258 -- heat_length_of_distribution_pipelines_in_meter_per_residence_object_fourth_bracket = 5.139551 -- heat_length_of_distribution_pipelines_in_meter_per_residence_object_fifth_bracket = 6.68058 -- heat_length_of_connection_pipelines_in_meter_per_residence_first_bracket = 2.426177 -- heat_length_of_connection_pipelines_in_meter_per_residence_second_bracket = 3.165475 -- heat_length_of_connection_pipelines_in_meter_per_residence_third_bracket = 3.772179 -- heat_length_of_connection_pipelines_in_meter_per_residence_fourth_bracket = 4.393049 -- heat_length_of_connection_pipelines_in_meter_per_residence_fifth_bracket = 5.635638 +- heat_length_of_distribution_pipelines_in_meter_per_residence_object_first_bracket = 3.509 +- heat_length_of_distribution_pipelines_in_meter_per_residence_object_second_bracket = 4.102 +- heat_length_of_distribution_pipelines_in_meter_per_residence_object_third_bracket = 4.6 +- heat_length_of_distribution_pipelines_in_meter_per_residence_object_fourth_bracket = 5.14 +- heat_length_of_distribution_pipelines_in_meter_per_residence_object_fifth_bracket = 6.681 +- heat_length_of_connection_pipelines_in_meter_per_residence_first_bracket = 2.426 +- heat_length_of_connection_pipelines_in_meter_per_residence_second_bracket = 3.165 +- heat_length_of_connection_pipelines_in_meter_per_residence_third_bracket = 3.772 +- heat_length_of_connection_pipelines_in_meter_per_residence_fourth_bracket = 4.393 +- heat_length_of_connection_pipelines_in_meter_per_residence_fifth_bracket = 5.636 - heat_buildings_indoor_investment_costs_eur_per_kw = 152.0 - heat_buildings_indoor_investment_costs_eur_per_connection = 7563.0 - heat_yearly_indoor_infrastructure_maintenance_costs_factor = 0.025 @@ -148,8 +158,13 @@ - electric_vehicle_profile_4_share = 0.12 - electric_vehicle_profile_5_share = 0.0 - annual_infrastructure_cost_gas = 38524413.73 +<<<<<<< Updated upstream - areable_land = 10577.96 - co2_emission_1990 = 18.01778809 +======= +- areable_land = 1057796.0 +- co2_emission_1990 = 18.018 +>>>>>>> Stashed changes - coast_line = 650.0 - interconnector_capacity = 500.0 - total_land_area = 13594.0 @@ -183,6 +198,7 @@ - offshore_suitable_for_wind = 438.0 - residences_roof_surface_available_for_pv = 5.62 - buildings_roof_surface_available_for_pv = 8.76 +<<<<<<< Updated upstream - energetic_emissions_other_ghg_industry = 0.047522149 - energetic_emissions_other_ghg_energy = 0.015653301 - energetic_emissions_other_ghg_transport = 0.037962345 @@ -201,6 +217,26 @@ - non_energetic_emissions_other_ghg_agriculture_soil_cultivation = 0.999786818 - non_energetic_emissions_other_ghg_agriculture_other = 0.0 - non_energetic_emissions_other_ghg_waste_management = 0.88243693 +======= +- energetic_emissions_other_ghg_industry = 3.233 +- energetic_emissions_other_ghg_energy = 2.725 +- energetic_emissions_other_ghg_transport = 4.29 +- energetic_emissions_other_ghg_buildings = 0.712 +- energetic_emissions_other_ghg_households = 2.725 +- energetic_emissions_other_ghg_agriculture = 0.69 +- non_energetic_emissions_co2_chemical_industry = 0.0 +- non_energetic_emissions_co2_other_industry = 0.002 +- non_energetic_emissions_co2_agriculture_manure = 0.013 +- non_energetic_emissions_co2_agriculture_soil_cultivation = 0.051 +- non_energetic_emissions_co2_waste_management = 0.235 +- non_energetic_emissions_other_ghg_chemical_industry = 0.0 +- non_energetic_emissions_other_ghg_other_industry = 0.283 +- non_energetic_emissions_other_ghg_agriculture_fermentation = 3.387 +- non_energetic_emissions_other_ghg_agriculture_manure = 0.93 +- non_energetic_emissions_other_ghg_agriculture_soil_cultivation = 1.0 +- non_energetic_emissions_other_ghg_agriculture_other = 0.0 +- non_energetic_emissions_other_ghg_waste_management = 0.882 +>>>>>>> Stashed changes - indirect_emissions_co2 = 0.0 - base_dataset = eu - scaling.area_attribute = number_of_inhabitants diff --git a/datasets/UKNI01_northern_ireland/carriers.csv b/datasets/UKNI01_northern_ireland/carriers.csv index c8fb93b92b..348bfd8492 100644 --- a/datasets/UKNI01_northern_ireland/carriers.csv +++ b/datasets/UKNI01_northern_ireland/carriers.csv @@ -13,6 +13,7 @@ biogenic_waste,0.0,0.0,0.1 bio_pyrolysis_oil,0.0,0.06429,0.07058 co,0.155586987,0.0, co2,0.0,0.0, +<<<<<<< Updated upstream coal,0.091980554,0.002222222, coal_gas,0.0926835,0.002522094, cokes,0.0926835,0.002522094, @@ -24,10 +25,24 @@ gasoline,0.070087045,0.016130065, geothermal,0.0,0.0, greengas,0.0,0.017658333,0.0546 heavy_fuel_oil,0.0764,0.014813827, +======= +coal,0.092,0.002222222, +coal_gas,0.0926835,0.002522094, +cokes,0.0926835,0.002522094, +crude_oil,0.072,0.010462929, +diesel,0.074,0.015214673, +dry_biomass,0.0,0.00556,0.1 +electricity,0.0,0.0, +gasoline,0.07,0.016130065, +geothermal,0.0,0.0, +greengas,0.0,0.017658333,0.0546 +heavy_fuel_oil,0.076,0.014813827, +>>>>>>> Stashed changes hydrogen,0.0,0.016711948, -imported_electricity,0.097500078,0.010444444, -imported_heat,0.03597,0.011569444, +imported_electricity,0.098,0.010444444, +imported_heat,0.036,0.011569444, imported_hydrogen,0.078,0.016711948, +<<<<<<< Updated upstream kerosene,0.071691106,0.010081803, light,0.0,0.0, lignite,0.1012,0.0011, @@ -37,6 +52,17 @@ lpg,0.063843994,0.015188765, methanol,0.0691,0.012898, natural_gas,0.056371182,0.003888889, non_biogenic_waste,0.0917,0.0, +======= +kerosene,0.072,0.010081803, +light,0.0,0.0, +lignite,0.101,0.0011, +lng,0.056,0.006723917, +loss,0.0,0.0, +lpg,0.064,0.015188765, +methanol,0.0691,0.012898, +natural_gas,0.056,0.003888889, +non_biogenic_waste,0.08,0.0, +>>>>>>> Stashed changes not_defined,0.0,0.0, oil_products,0.0755,0.005060687, oily_biomass,0.0,0.01667,0.0796 @@ -53,11 +79,15 @@ water,0.0,0.0, wet_biomass,0.0,0.00556,0.112 wind,0.0,0.0, wood_pellets,0.0,0.008321111,0.112 -imported_ammonia,0.096774194,0.012004032, +imported_ammonia,0.097,0.012004032, ammonia,0.0,0.012004032, liquid_hydrogen,0.0,0.02089, imported_liquid_hydrogen,0.0975,0.02089, imported_lohc,0.08211,0.01759, lohc,0.0,0.01759, +<<<<<<< Updated upstream propane,0.0646,0.00768, +======= +propane,0.064,0.00768, +>>>>>>> Stashed changes naphtha,0.07,0.0147, diff --git a/datasets/UKNI01_northern_ireland/emissions.csv b/datasets/UKNI01_northern_ireland/emissions.csv index 242c5e0653..0806851eea 100644 --- a/datasets/UKNI01_northern_ireland/emissions.csv +++ b/datasets/UKNI01_northern_ireland/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,5.55405 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,17.468 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,5327.90283 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,2.80794 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,1.70541 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,2.22891 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,11.73897 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.16702 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,4.04321 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,79.90826 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,10.87474 -Industry,Other,non_energetic,co2,kton CO2-eq,69.0574 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,305.73101 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,426.04827 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,607.53162 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.47799 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.51838 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,37.8814 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.52536 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,887.63217 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,191.02775 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4.8514 +Agriculture,Non-specified,energetic,other_ghg,2018,kton CO2-eq,5.55405 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,78.84731 +Agriculture,Non-specified,non_energetic,co2,2018,kton CO2-eq,64.04934 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,4922.96857 +Agriculture,Non-specified,non_energetic,other_ghg,2018,kton CO2-eq,5327.90283 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,697.19535 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,4.85618 +Buildings,Non-specified,energetic,other_ghg,2018,kton CO2-eq,2.80794 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,63.17342 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.58834 +Bunkers,International aviation,energetic,other_ghg,2018,kton CO2-eq,1.70541 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,125.35005 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,1.61749 +Bunkers,International navigation,energetic,other_ghg,2018,kton CO2-eq,2.22891 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2018,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,5285.30041 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,21.95268 +Energy,Electricity and heat production,energetic,other_ghg,2018,kton CO2-eq,11.73897 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2018,kton CO2-eq,0.6124 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2018,kton CO2-eq,4.04321 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,3460.43218 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,270.2453 +Households,Non-specified,energetic,other_ghg,2018,kton CO2-eq,79.90826 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,303.23978 +Industry,Fertilizers,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,2533.50568 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,13.5526 +Industry,Non-specified,energetic,other_ghg,2018,kton CO2-eq,10.87474 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,432.18892 +Industry,Other,non_energetic,co2,2018,kton CO2-eq,253.21046 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,24.41972 +Industry,Other,non_energetic,other_ghg,2018,kton CO2-eq,305.73101 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2018,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2018,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,1998.96883 +LULUCF,Emissions,non_energetic,co2,2018,kton CO2-eq,1562.17698 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,643.56693 +LULUCF,Emissions,non_energetic,other_ghg,2018,kton CO2-eq,607.53162 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2018,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2018,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,191.35926 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1.87821 +Other,Non-specified,energetic,other_ghg,2018,kton CO2-eq,0.47799 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,31.11425 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.37387 +Other,Other transportation,energetic,other_ghg,2018,kton CO2-eq,0.51838 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,3422.46712 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,73.96533 +Transport,Non-specified,energetic,other_ghg,2018,kton CO2-eq,37.8814 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,2.73258 +Waste,Non-specified,non_energetic,co2,2018,kton CO2-eq,1.92632 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,1953.6058 +Waste,Non-specified,non_energetic,other_ghg,2018,kton CO2-eq,887.63217 diff --git a/datasets/UKNI01_northern_ireland/graph_values.yml b/datasets/UKNI01_northern_ireland/graph_values.yml index 26b7f933ec..8e8b26014f 100644 --- a/datasets/UKNI01_northern_ireland/graph_values.yml +++ b/datasets/UKNI01_northern_ireland/graph_values.yml @@ -36,15 +36,25 @@ agriculture_final_demand_crude_oil: :bio_oil: 0.0 :crude_oil: 0.0 agriculture_final_demand_diesel: +<<<<<<< Updated upstream demand: 6.1576711 agriculture_final_demand_electricity: demand: 415.5062609 +======= + demand: 6.157584999999999 +agriculture_final_demand_electricity: + demand: 415.506 +>>>>>>> Stashed changes agriculture_final_demand_ht_steam_hot_water: demand: 0.0 agriculture_final_demand_hydrogen: demand: 0.0 agriculture_final_demand_kerosene: +<<<<<<< Updated upstream demand: 15.2976289 +======= + demand: 15.297414999999997 +>>>>>>> Stashed changes agriculture_final_demand_lpg: demand: 0.0 agriculture_final_demand_mt_steam_hot_water: @@ -56,13 +66,21 @@ agriculture_final_demand_other_bio_oil: agriculture_final_demand_other_oil: demand: 0.0 agriculture_final_demand_wood_pellets: +<<<<<<< Updated upstream demand: 921.639685 +======= + demand: 921.64 +>>>>>>> Stashed changes buildings_final_demand_bio_kerosene: demand: 0.0 buildings_final_demand_biodiesel: demand: 0.0 buildings_final_demand_coal: +<<<<<<< Updated upstream demand: 26.45014238 +======= + demand: 26.45 +>>>>>>> Stashed changes buildings_final_demand_crude_oil: input: :diesel: 0.287 @@ -73,6 +91,7 @@ buildings_final_demand_crude_oil: :bio_oil: 0.0 :crude_oil: 0.0 buildings_final_demand_diesel: +<<<<<<< Updated upstream demand: 387.27412582599993 buildings_final_demand_electricity: demand: 13503.23476 @@ -80,6 +99,15 @@ buildings_final_demand_ht_steam_hot_water: demand: 0.0 buildings_final_demand_kerosene: demand: 962.1130721739999 +======= + demand: 387.27406899999994 +buildings_final_demand_electricity: + demand: 13503.235 +buildings_final_demand_ht_steam_hot_water: + demand: 0.0 +buildings_final_demand_kerosene: + demand: 962.1129309999999 +>>>>>>> Stashed changes buildings_final_demand_lpg: demand: 0.0 buildings_final_demand_lt_steam_hot_water: @@ -93,11 +121,15 @@ buildings_final_demand_other_bio_oil: buildings_final_demand_other_oil: demand: 0.0 buildings_final_demand_solar_thermal: - demand: 0.0144 + demand: 0.014 buildings_final_demand_wood_pellets: +<<<<<<< Updated upstream demand: 95.50290996 +======= + demand: 95.503 +>>>>>>> Stashed changes buildings_solar_pv_solar_radiation: - demand: 2448.2880847058823 + demand: 2448.2882352941174 full_load_hours: 973.0 buildings_space_heater_hybrid_heatpump_air_water_electricity: input: @@ -107,30 +139,52 @@ buildings_space_heater_hybrid_heatpump_air_water_electricity: buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal: number_of_units: 46272.0 bunkers_total_useful_demand_planes: +<<<<<<< Updated upstream demand: 2732.175452 bunkers_total_useful_demand_ships: demand: 2341.355377 +======= + demand: 2732.175 +bunkers_total_useful_demand_ships: + demand: 2341.355 +>>>>>>> Stashed changes energy_battery_solar_pv_solar_radiation: full_load_hours: 973.0 energy_battery_wind_turbine_inland: - full_load_hours: 2102.857938 + full_load_hours: 2102.858 energy_blastfurnace_transformation_cokes: input: :coal: 0.44 :cokes: 0.56 output: +<<<<<<< Updated upstream :coal_gas: 0.400028847 energy_chp_coal_gas: output: :steam_hot_water: 0.027941505 :electricity: 0.423469024 +======= + :coal_gas: 0.4 +energy_chp_coal_gas: + output: + :steam_hot_water: 0.028 + :electricity: 0.423 +>>>>>>> Stashed changes full_load_hours: 6354.3 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 3700.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 3700.0 @@ -253,8 +307,13 @@ energy_chp_ultra_supercritical_mt_lignite: demand: 0.0 energy_cokesoven_transformation_coal: output: +<<<<<<< Updated upstream :coal_gas: 0.201181415 :cokes: 0.710233551 +======= + :coal_gas: 0.201 + :cokes: 0.71 +>>>>>>> Stashed changes energy_distribution_crude_oil_loss: demand: 0.0 energy_distribution_greengas: @@ -395,7 +454,7 @@ energy_hydrogen_electrolysis_wind_electricity: energy_hydrogen_solar_pv_solar_radiation: full_load_hours: 973.0 energy_hydrogen_wind_turbine_offshore: - full_load_hours: 2520.0 + full_load_hours: 0.0 energy_mixer_for_gas_power_fuel: input: :network_gas: 1.0 @@ -415,11 +474,19 @@ energy_power_combined_cycle_coal: :electricity: 0.45299999999999996 energy_power_combined_cycle_coal_gas: output: +<<<<<<< Updated upstream :electricity: 0.379281273 full_load_hours: 2188.0 energy_power_combined_cycle_network_gas_dispatchable: demand: 17900.167866666667 full_load_hours: 4072.631859 +======= + :electricity: 0.379 + full_load_hours: 2188.0 +energy_power_combined_cycle_network_gas: + demand: 17900.168333333335 + full_load_hours: 4072.632 +>>>>>>> Stashed changes output: :electricity: 0.6 energy_power_combined_cycle_network_gas_must_run: @@ -427,8 +494,8 @@ energy_power_combined_cycle_network_gas_must_run: output: :electricity: 0.6 energy_power_engine_diesel: - demand: 103.61624384210526 - full_load_hours: 22.64445173 + demand: 103.61578947368422 + full_load_hours: 22.644 output: :electricity: 0.38 energy_power_engine_network_gas: @@ -442,13 +509,13 @@ energy_power_geothermal: energy_power_hv_network_loss: demand: 2422.8 energy_power_hybrid_wind_turbine_offshore: - full_load_hours: 2520.0 + full_load_hours: 0.0 energy_power_hydro_mountain: demand: 0.0 full_load_hours: 4024.0 energy_power_hydro_river: - demand: 51.35442666326531 - full_load_hours: 2329.969358 + demand: 51.35408163265306 + full_load_hours: 2329.969 energy_power_nuclear_gen2_uranium_oxide: demand: 0.0 output: @@ -472,18 +539,24 @@ energy_power_solar_pv_solar_radiation: energy_power_supercritical_ccs_waste_mix: full_load_hours: 4100.0 energy_power_supercritical_coal: - demand: 12714.60831388889 - full_load_hours: 2671.1362 + demand: 12714.608333333334 + full_load_hours: 2671.136 output: :electricity: 0.36 energy_power_supercritical_waste_mix: demand: 720.0 - full_load_hours: 3333.333333 + full_load_hours: 3333.333 output: :electricity: 0.25 +<<<<<<< Updated upstream energy_power_turbine_network_gas_dispatchable: demand: 315.15023264705883 full_load_hours: 119.0567546 +======= +energy_power_turbine_network_gas: + demand: 315.15 + full_load_hours: 119.057 +>>>>>>> Stashed changes output: :electricity: 0.34 energy_power_turbine_network_gas_must_run: @@ -516,8 +589,8 @@ energy_power_ultra_supercritical_lignite: full_load_hours: 6329.0 demand: 0.0 energy_power_ultra_supercritical_network_gas: - demand: 7390.269785 - full_load_hours: 1513.037743 + demand: 7390.27 + full_load_hours: 1513.038 output: :electricity: 0.4 energy_power_ultra_supercritical_oxyfuel_ccs_lignite: @@ -528,15 +601,15 @@ energy_power_wind_turbine_coastal: demand: 0.0 full_load_hours: 2290.0 energy_power_wind_turbine_inland: - demand: 10067.703367010308 - full_load_hours: 2102.857938 + demand: 10067.703092783506 + full_load_hours: 2102.858 energy_power_wind_turbine_offshore: demand: 0.0 - full_load_hours: 2520.0 + full_load_hours: 0.0 energy_production_dry_biomass: - max_demand: 5857.964182 + max_demand: 5857.964 energy_production_oily_biomass: - max_demand: 6.301158564 + max_demand: 6.301 energy_production_wet_biomass: max_demand: 18500.0 households_final_demand_bio_kerosene: @@ -544,7 +617,11 @@ households_final_demand_bio_kerosene: households_final_demand_biodiesel: demand: 0.0 households_final_demand_coal: +<<<<<<< Updated upstream demand: 5322.734457 +======= + demand: 5322.734 +>>>>>>> Stashed changes households_final_demand_crude_oil: input: :diesel: 0.019 @@ -555,13 +632,21 @@ households_final_demand_crude_oil: :bio_oil: 0.0 :crude_oil: 0.0 households_final_demand_diesel: +<<<<<<< Updated upstream demand: 496.66657058 +======= + demand: 496.666574 +>>>>>>> Stashed changes households_final_demand_electricity: - demand: 10847.77819 + demand: 10847.778 households_final_demand_ht_steam_hot_water: demand: 0.0 households_final_demand_kerosene: +<<<<<<< Updated upstream demand: 25643.679249419998 +======= + demand: 25643.679426000002 +>>>>>>> Stashed changes households_final_demand_lpg: demand: 0.0 households_final_demand_lt_steam_hot_water: @@ -569,17 +654,25 @@ households_final_demand_lt_steam_hot_water: households_final_demand_mt_steam_hot_water: demand: 0.0 households_final_demand_network_gas: +<<<<<<< Updated upstream demand: 8980.16925 +======= + demand: 8980.169 +>>>>>>> Stashed changes households_final_demand_other_bio_oil: demand: 0.0 households_final_demand_other_oil: demand: 0.0 households_final_demand_solar_thermal: - demand: 3.967389288 + demand: 3.967 households_final_demand_wood_pellets: +<<<<<<< Updated upstream demand: 713.3466898 +======= + demand: 713.347 +>>>>>>> Stashed changes households_solar_pv_solar_radiation: - demand: 1585.518776470588 + demand: 1585.5176470588235 full_load_hours: 973.0 households_solar_pvt_solar_radiation: full_load_hours: 973.0 @@ -696,7 +789,11 @@ industry_final_demand_biodiesel: industry_final_demand_biodiesel_non_energetic: demand: 0.0 industry_final_demand_coal: +<<<<<<< Updated upstream demand: 3428.696863 +======= + demand: 3428.697 +>>>>>>> Stashed changes industry_final_demand_coal_gas: demand: 0.0 industry_final_demand_coal_non_energetic: @@ -724,17 +821,29 @@ industry_final_demand_crude_oil_non_energetic: :bio_oil: 0.0 :crude_oil: 1.0 industry_final_demand_diesel: +<<<<<<< Updated upstream demand: 1689.6989659409999 industry_final_demand_diesel_non_energetic: demand: 0.0 industry_final_demand_electricity: demand: 8165.604492 +======= + demand: 1689.699011 +industry_final_demand_diesel_non_energetic: + demand: 0.0 +industry_final_demand_electricity: + demand: 8165.604 +>>>>>>> Stashed changes industry_final_demand_for_other_ict_dsr_electricity: demand: 0.0 industry_final_demand_hydrogen_non_energetic: demand: 0.0 industry_final_demand_kerosene: +<<<<<<< Updated upstream demand: 4197.753877059 +======= + demand: 4197.753989 +>>>>>>> Stashed changes industry_final_demand_kerosene_non_energetic: demand: 0.0 industry_final_demand_lpg: @@ -746,7 +855,11 @@ industry_final_demand_naphtha: industry_final_demand_naphtha_non_energetic: demand: 0.0 industry_final_demand_network_gas: +<<<<<<< Updated upstream demand: 4238.85403 +======= + demand: 4238.854 +>>>>>>> Stashed changes industry_final_demand_network_gas_non_energetic: demand: 0.0 industry_final_demand_other_bio_oil: @@ -832,12 +945,17 @@ other_final_demand_crude_oil: other_final_demand_crude_oil_non_energetic: demand: 0.0 other_final_demand_electricity: +<<<<<<< Updated upstream demand: 115.2562359 +======= + demand: 115.256 +>>>>>>> Stashed changes other_final_demand_ht_steam_hot_water: demand: 0.0 other_final_demand_network_gas: demand: 84.24 other_final_demand_wood_pellets: +<<<<<<< Updated upstream demand: 253.3522492 transport_car_using_hydrogen: demand: 0.0 @@ -849,12 +967,29 @@ transport_final_demand_biodiesel: demand: 1370.601534 transport_final_demand_coal: demand: 0.019450713 +======= + demand: 253.352 +transport_car_using_hydrogen: + demand: 0.0 +transport_final_demand_bio_ethanol: + demand: 854.649 +transport_final_demand_bio_lng: + demand: 0.0 +transport_final_demand_biodiesel: + demand: 1370.602 +transport_final_demand_coal: + demand: 0.019 +>>>>>>> Stashed changes transport_final_demand_compressed_network_gas: demand: 0.0 transport_final_demand_crude_oil_non_energetic: demand: 0.0 transport_final_demand_diesel: +<<<<<<< Updated upstream demand: 43589.14532460001 +======= + demand: 43589.14599999999 +>>>>>>> Stashed changes transport_final_demand_electricity: demand: 24.552 transport_final_demand_for_road_bio_lng: @@ -868,6 +1003,7 @@ transport_final_demand_for_shipping_bio_lng: transport_final_demand_for_shipping_lng: demand: 0.0 transport_final_demand_gasoline: +<<<<<<< Updated upstream demand: 15810.582079276 transport_final_demand_heavy_fuel_oil: demand: 1006.506683 @@ -875,6 +1011,15 @@ transport_final_demand_hydrogen: demand: 0.0 transport_final_demand_kerosene: demand: 2632.747251 +======= + demand: 15810.582 +transport_final_demand_heavy_fuel_oil: + demand: 1006.507 +transport_final_demand_hydrogen: + demand: 0.0 +transport_final_demand_kerosene: + demand: 2632.747 +>>>>>>> Stashed changes transport_final_demand_lng: demand: 0.0 transport_final_demand_lpg: @@ -885,12 +1030,21 @@ transport_rail_mixer_diesel: :biodiesel: 0.0 transport_road_mixer_diesel: input: +<<<<<<< Updated upstream :diesel: 0.9680981050047368 :biodiesel: 0.03190189499526318 transport_road_mixer_gasoline: input: :gasoline: 0.9487054985426211 :bio_ethanol: 0.05129450145737877 +======= + :diesel: 0.968098094793815 + :biodiesel: 0.03190190520618503 +transport_road_mixer_gasoline: + input: + :gasoline: 0.9487055003264689 + :bio_ethanol: 0.05129449967353097 +>>>>>>> Stashed changes transport_road_mixer_lng: input: :lng: 1.0 @@ -899,10 +1053,17 @@ transport_shipping_mixer_diesel: input: :lng: 0.0 :bio_lng: 0.0 +<<<<<<< Updated upstream :diesel: 0.6206709215983777 :biodiesel: 0.0 :bio_ethanol: 0.0 :heavy_fuel_oil: 0.3793290784016224 +======= + :diesel: 0.6206708633154531 + :biodiesel: 0.0 + :bio_ethanol: 0.0 + :heavy_fuel_oil: 0.37932913668454693 +>>>>>>> Stashed changes transport_shipping_mixer_lng: input: :lng: 0.788231329867936 @@ -938,11 +1099,11 @@ buildings_final_demand_coal-buildings_final_demand_for_space_heating_coal@coal: buildings_final_demand_crude_oil-buildings_final_demand_for_space_heating_crude_oil@crude_oil: parent_share: 1.0 buildings_final_demand_electricity-buildings_final_demand_for_appliances_electricity@electricity: - parent_share: 0.520855542 + parent_share: 0.521 buildings_final_demand_electricity-buildings_final_demand_for_lighting_electricity@electricity: - parent_share: 0.228389377 + parent_share: 0.228 buildings_final_demand_electricity-buildings_final_demand_for_space_heating_electricity@electricity: - parent_share: 0.116670131 + parent_share: 0.117 buildings_final_demand_for_cooling_electricity-buildings_cooling_airconditioning_electricity@electricity: parent_share: 1.0 buildings_final_demand_for_cooling_electricity-buildings_cooling_heatpump_air_water_electricity@electricity: @@ -962,11 +1123,11 @@ buildings_final_demand_for_space_heating_network_gas-buildings_space_heater_heat buildings_final_demand_for_space_heating_network_gas-buildings_space_heater_hybrid_heatpump_air_water_electricity@network_gas: parent_share: 0.0 buildings_final_demand_network_gas-buildings_final_demand_for_appliances_network_gas@network_gas: - parent_share: 0.149146651 + parent_share: 0.149 buildings_final_demand_network_gas-buildings_final_demand_for_space_heating_network_gas@network_gas: - parent_share: 0.850540533 + parent_share: 0.851 buildings_final_demand_wood_pellets-buildings_final_demand_for_space_heating_wood_pellets@wood_pellets: - parent_share: 0.839706774 + parent_share: 0.84 energy_blastfurnace_transformation_cokes-energy_distribution_coal_gas@coal_gas: child_share: 0.6907 energy_cokesoven_transformation_coal-energy_distribution_coal_gas@coal_gas: @@ -982,7 +1143,7 @@ energy_greengas_gasification_wet_biomass-energy_greengas_production@greengas: energy_greengas_upgrade_biogas-energy_greengas_production@greengas: child_share: 1.0 energy_regasification_lng-energy_national_gas_network_natural_gas@natural_gas: - demand: 7222.34208 + demand: 7222.342 households_final_demand_coal-households_final_demand_for_space_heating_coal@coal: parent_share: 0.961 households_final_demand_crude_oil-households_final_demand_for_space_heating_crude_oil@crude_oil: @@ -1024,7 +1185,11 @@ households_final_demand_for_hot_water_electricity-households_water_heater_heatpu households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity: parent_share: 0.0 households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity: +<<<<<<< Updated upstream parent_share: 0.99605 +======= + parent_share: 0.996 +>>>>>>> Stashed changes households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas: parent_share: 0.95 households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas: @@ -1034,7 +1199,11 @@ households_final_demand_for_lighting_electricity-households_lighting_efficient_f households_final_demand_for_lighting_electricity-households_lighting_incandescent_electricity@electricity: parent_share: 0.849 households_final_demand_for_space_heating_electricity-households_space_heater_electricity@electricity: +<<<<<<< Updated upstream parent_share: 0.99605 +======= + parent_share: 0.996 +>>>>>>> Stashed changes households_final_demand_for_space_heating_electricity-households_space_heater_heatpump_air_water_electricity@electricity: parent_share: 0.002 households_final_demand_for_space_heating_electricity-households_space_heater_hybrid_heatpump_air_water_electricity@electricity: @@ -1146,7 +1315,11 @@ industry_final_demand_for_chemical_wood_pellets-industry_final_demand_for_chemic ? industry_final_demand_for_chemical_wood_pellets_non_energetic-industry_final_demand_for_chemical_refineries_wood_pellets_non_energetic@wood_pellets : parent_share: 0.0 industry_final_demand_for_metal_aluminium_electricity-industry_aluminium_electrolysis_current_electricity@electricity: +<<<<<<< Updated upstream parent_share: 0.981459432 +======= + parent_share: 0.981 +>>>>>>> Stashed changes industry_final_demand_for_metal_coal-industry_final_demand_for_metal_steel_coal@coal: parent_share: 0.0 industry_final_demand_for_metal_crude_oil-industry_final_demand_for_metal_steel_crude_oil@crude_oil: @@ -1236,11 +1409,19 @@ transport_final_demand_biodiesel-transport_final_demand_for_road_biodiesel@biodi transport_final_demand_biodiesel-transport_final_demand_for_shipping_biodiesel@biodiesel: parent_share: 0.0 transport_final_demand_diesel-transport_final_demand_for_rail_diesel@diesel: +<<<<<<< Updated upstream parent_share: 0.008026168510410232 transport_final_demand_diesel-transport_final_demand_for_road_diesel@diesel: parent_share: 0.9541919507774077 transport_final_demand_diesel-transport_final_demand_for_shipping_diesel@diesel: parent_share: 0.03778188071218193 +======= + parent_share: 0.008026172387043326 +transport_final_demand_diesel-transport_final_demand_for_road_diesel@diesel: + parent_share: 0.9541919449396876 +transport_final_demand_diesel-transport_final_demand_for_shipping_diesel@diesel: + parent_share: 0.03778188267326917 +>>>>>>> Stashed changes transport_final_demand_electricity-transport_final_demand_for_aviation_electricity@electricity: parent_share: 0.0 transport_final_demand_electricity-transport_final_demand_for_road_electricity@electricity: @@ -1256,13 +1437,21 @@ transport_final_demand_for_road_electricity-transport_bicycle_using_electricity@ transport_final_demand_for_road_electricity-transport_bus_using_electricity@electricity: parent_share: 0.0 transport_final_demand_for_road_electricity-transport_car_using_electricity@electricity: +<<<<<<< Updated upstream parent_share: 0.92483 transport_final_demand_for_road_electricity-transport_motorcycle_using_electricity@electricity: parent_share: 0.011388 transport_final_demand_for_road_electricity-transport_truck_using_electricity@electricity: parent_share: 0.031722 +======= + parent_share: 0.925 +transport_final_demand_for_road_electricity-transport_motorcycle_using_electricity@electricity: + parent_share: 0.011 +transport_final_demand_for_road_electricity-transport_truck_using_electricity@electricity: + parent_share: 0.032 +>>>>>>> Stashed changes transport_final_demand_for_road_electricity-transport_van_using_electricity@electricity: - parent_share: 0.03206 + parent_share: 0.032 transport_final_demand_for_road_hydrogen-transport_bus_using_hydrogen@hydrogen: parent_share: 0.0 transport_final_demand_for_road_hydrogen-transport_truck_using_hydrogen@hydrogen: @@ -1274,7 +1463,11 @@ transport_final_demand_for_road_lpg-transport_car_using_lpg@lpg: transport_final_demand_for_road_lpg-transport_van_using_lpg@lpg: parent_share: 0.0 transport_final_demand_gasoline-transport_final_demand_for_road_gasoline@gasoline: +<<<<<<< Updated upstream parent_share: 0.9997710635030481 +======= + parent_share: 0.9997710394215722 +>>>>>>> Stashed changes transport_rail_mixer_diesel-transport_freight_train_using_diesel_mix@diesel_mix: parent_share: 0.0 transport_road_mixer_compressed_network_gas-transport_bus_using_compressed_natural_gas@compressed_network_gas: diff --git a/datasets/UK_united_kingdom/UK_united_kingdom.derived.ad b/datasets/UK_united_kingdom/UK_united_kingdom.derived.ad index cf000fe287..0c4d07d4bb 100644 --- a/datasets/UK_united_kingdom/UK_united_kingdom.derived.ad +++ b/datasets/UK_united_kingdom/UK_united_kingdom.derived.ad @@ -1,6 +1,6 @@ - area = UK_united_kingdom -- id = 128448 -- parent_id = 128448 +- id = 128871 +- parent_id = 128871 - group = country - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/UK_united_kingdom/emissions.csv b/datasets/UK_united_kingdom/emissions.csv index d2e8c34253..6d6113684c 100644 --- a/datasets/UK_united_kingdom/emissions.csv +++ b/datasets/UK_united_kingdom/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,78.44007 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,1444.89204 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,42402.70798 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,59.19369 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,309.61776 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,123.22165 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,673.73487 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,383.20546 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,4283.40449 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,5854.39753 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,701.82766 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,60.66016 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.61768 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,2830.36353 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,196.60591 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,34.49572 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,329.80748 -Industry,Other,non_energetic,co2,kton CO2-eq,6802.34579 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,13587.8945 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,87.73359 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,19.20809 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.16492 -Industry,Steel,non_energetic,co2,kton CO2-eq,10546.50731 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,12.39233 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,7057.05229 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,5227.68038 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,16.56668 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,7.14518 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,1150.20496 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,302.48052 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,20690.18661 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,3982.55916 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,50.73983 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,78.44007 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,1312.91507 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,1444.89204 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,49516.06923 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,42402.70798 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,28549.16443 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,134.33488 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,59.19369 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,15390.61599 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,138.17083 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,309.61776 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,8881.26584 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,114.95026 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,123.22165 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,204201.80813 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,1089.20443 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,673.73487 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,16026.34549 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,411.83252 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,383.20546 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,6787.09239 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,4283.40449 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,38321.67967 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,5854.39753 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,497.72019 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.84 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,78544.31956 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,1977.89991 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,701.82766 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,450.31917 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,60.66016 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,1396.75682 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,5.61768 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,4582.87245 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,2830.36353 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,30046.04721 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,196.60591 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,1894.99621 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,3433.34013 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,34.49572 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,75237.16424 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,375.15072 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,329.80748 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,10787.7334 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,6802.34579 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,1497.79221 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,13587.8945 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,1350.64572 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,417.49153 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,87.73359 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,17831.3373 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,37.8656 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,19.20809 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.12288 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,0.16492 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,23628.28246 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,10546.50731 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,43.92174 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,12.39233 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,3671.10352 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,7481.37382 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,7057.05229 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,5227.68038 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,5293.43745 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.89171 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,16.56668 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,98.14447 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,1.18248 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,7.14518 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,121164.13031 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,2725.01685 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1150.20496 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,1445.17111 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,302.48052 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,71104.50348 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,20690.18661 diff --git a/datasets/UK_united_kingdom/graph_values.yml b/datasets/UK_united_kingdom/graph_values.yml index a5f23202ba..c37c533b87 100644 --- a/datasets/UK_united_kingdom/graph_values.yml +++ b/datasets/UK_united_kingdom/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.039780299343470577 :electricity: 0.36993596484365154 full_load_hours: 5320.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 5265.0 output: :steam_hot_water: 0.42 :electricity: 0.46 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.42 + :electricity: 0.46 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5265.0 diff --git a/datasets/VUNH5_efate/VUNH5_efate.derived.ad b/datasets/VUNH5_efate/VUNH5_efate.derived.ad index 5ddf04b463..a72a27d6d1 100644 --- a/datasets/VUNH5_efate/VUNH5_efate.derived.ad +++ b/datasets/VUNH5_efate/VUNH5_efate.derived.ad @@ -1,6 +1,6 @@ - area = VUNH5_efate -- id = 128465 -- parent_id = 128465 +- id = 128888 +- parent_id = 128888 - group = province - enabled.etengine = true - enabled.etmodel = true diff --git a/datasets/VUNH5_efate/emissions.csv b/datasets/VUNH5_efate/emissions.csv index 88b5577c7b..819c19a26d 100644 --- a/datasets/VUNH5_efate/emissions.csv +++ b/datasets/VUNH5_efate/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Food,non_energetic,co2,kton CO2-eq,0.0 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2020,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2020,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2020,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2020,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2020,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2020,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2020,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2020,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2020,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2020,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2020,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2020,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2020,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2020,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2020,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2020,kton CO2-eq,0.0 diff --git a/datasets/VUNH5_efate/graph_values.yml b/datasets/VUNH5_efate/graph_values.yml index 4ac9d4a836..427f2d0421 100644 --- a/datasets/VUNH5_efate/graph_values.yml +++ b/datasets/VUNH5_efate/graph_values.yml @@ -125,12 +125,20 @@ energy_chp_coal_gas: :steam_hot_water: 0.0 :electricity: 1.0 full_load_hours: 5000.0 +energy_chp_combined_cycle_ht_hydrogen: + output: + :steam_hot_water: 0.305 + :electricity: 0.433 energy_chp_combined_cycle_ht_network_gas: demand: 0.0 full_load_hours: 5000.0 output: :steam_hot_water: 0.305 :electricity: 0.433 +energy_chp_combined_cycle_mt_hydrogen: + output: + :steam_hot_water: 0.305 + :electricity: 0.433 energy_chp_combined_cycle_mt_network_gas: demand: 0.0 full_load_hours: 5000.0 diff --git a/datasets/eu/emissions.csv b/datasets/eu/emissions.csv index 7acf67b2ac..f56af54402 100644 --- a/datasets/eu/emissions.csv +++ b/datasets/eu/emissions.csv @@ -1,38 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,0.0 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Steel,non_energetic,co2,kton CO2-eq,0.0 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,0.0 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,0.0 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,0.0 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,co2,2011,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Agriculture,Non-specified,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Buildings,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International aviation,energetic,other_ghg,2011,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Bunkers,International navigation,energetic,other_ghg,2011,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2011,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,other_ghg,2011,kton CO2-eq,0.0 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fuels production,energetic,other_ghg,2011,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,co2,2011,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Fugitive emissions,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Households,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Fertilizers,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,co2,2011,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,2011,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,other_ghg,2011,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2011,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,2011,kton CO2-eq,0.0 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Other transportation,energetic,other_ghg,2011,kton CO2-eq,0.0 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Transport,Non-specified,energetic,other_ghg,2011,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2011,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,2011,kton CO2-eq,0.0 diff --git a/datasets/nl/emissions.csv b/datasets/nl/emissions.csv index 728434d866..ba9f1028b3 100644 --- a/datasets/nl/emissions.csv +++ b/datasets/nl/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1039.61737 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,134.64905 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,18863.47433 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,55.64044 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,86.58466 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,386.36696 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,355.6666 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,40.86544 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,135.16769 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,721.14132 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,433.18467 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,39.9058 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.84769 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1410.82032 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1569.73308 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,329.33935 -Industry,Food,non_energetic,co2,kton CO2-eq,13.54267 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,97.6826 -Industry,Other,non_energetic,co2,kton CO2-eq,1757.70271 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1929.80226 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,27.01941 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,6.21011 -Industry,Steel,non_energetic,co2,kton CO2-eq,16.42348 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5072.69447 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,335.63607 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,451.71965 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.04293 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,313.78377 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,4418.98496 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2015,kton CO2-eq,1039.61737 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2015,kton CO2-eq,134.64905 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,18863.47433 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2015,kton CO2-eq,55.64044 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2015,kton CO2-eq,86.58466 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2015,kton CO2-eq,386.36696 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2015,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2015,kton CO2-eq,355.6666 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2015,kton CO2-eq,40.86544 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2015,kton CO2-eq,135.16769 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2015,kton CO2-eq,721.14132 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2015,kton CO2-eq,433.18467 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2015,kton CO2-eq,39.9058 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2015,kton CO2-eq,5.84769 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2015,kton CO2-eq,1410.82032 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2015,kton CO2-eq,1569.73308 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2015,kton CO2-eq,329.33935 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2015,kton CO2-eq,13.54267 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2015,kton CO2-eq,97.6826 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2015,kton CO2-eq,1757.70271 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2015,kton CO2-eq,1929.80226 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2015,kton CO2-eq,27.01941 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2015,kton CO2-eq,6.21011 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2015,kton CO2-eq,16.42348 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2015,kton CO2-eq,5072.69447 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2015,kton CO2-eq,335.63607 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2015,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2015,kton CO2-eq,451.71965 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2015,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2015,kton CO2-eq,0.04293 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2015,kton CO2-eq,313.78377 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2015,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,4418.98496 diff --git a/datasets/nl2016/emissions.csv b/datasets/nl2016/emissions.csv index 728434d866..ba9f1028b3 100644 --- a/datasets/nl2016/emissions.csv +++ b/datasets/nl2016/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1039.61737 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,134.64905 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,18863.47433 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,55.64044 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,86.58466 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,386.36696 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,355.6666 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,40.86544 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,135.16769 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,721.14132 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,433.18467 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,39.9058 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.84769 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1410.82032 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1569.73308 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,329.33935 -Industry,Food,non_energetic,co2,kton CO2-eq,13.54267 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,97.6826 -Industry,Other,non_energetic,co2,kton CO2-eq,1757.70271 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1929.80226 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,27.01941 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,6.21011 -Industry,Steel,non_energetic,co2,kton CO2-eq,16.42348 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5072.69447 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,335.63607 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,451.71965 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.04293 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,313.78377 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,4418.98496 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2015,kton CO2-eq,1039.61737 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2015,kton CO2-eq,134.64905 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,18863.47433 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2015,kton CO2-eq,55.64044 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2015,kton CO2-eq,86.58466 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2015,kton CO2-eq,386.36696 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2015,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2015,kton CO2-eq,355.6666 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2015,kton CO2-eq,40.86544 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2015,kton CO2-eq,135.16769 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2015,kton CO2-eq,721.14132 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2015,kton CO2-eq,433.18467 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2015,kton CO2-eq,39.9058 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2015,kton CO2-eq,5.84769 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2015,kton CO2-eq,1410.82032 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2015,kton CO2-eq,1569.73308 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2015,kton CO2-eq,329.33935 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2015,kton CO2-eq,13.54267 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2015,kton CO2-eq,97.6826 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2015,kton CO2-eq,1757.70271 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2015,kton CO2-eq,1929.80226 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2015,kton CO2-eq,27.01941 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2015,kton CO2-eq,6.21011 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2015,kton CO2-eq,16.42348 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2015,kton CO2-eq,5072.69447 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2015,kton CO2-eq,335.63607 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2015,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2015,kton CO2-eq,451.71965 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2015,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2015,kton CO2-eq,0.04293 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2015,kton CO2-eq,313.78377 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2015,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,4418.98496 diff --git a/datasets/nl2017/emissions.csv b/datasets/nl2017/emissions.csv index 728434d866..ba9f1028b3 100644 --- a/datasets/nl2017/emissions.csv +++ b/datasets/nl2017/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1039.61737 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,134.64905 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,18863.47433 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,55.64044 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,86.58466 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,386.36696 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,355.6666 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,40.86544 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,135.16769 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,721.14132 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,433.18467 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,39.9058 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.84769 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1410.82032 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1569.73308 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,329.33935 -Industry,Food,non_energetic,co2,kton CO2-eq,13.54267 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,97.6826 -Industry,Other,non_energetic,co2,kton CO2-eq,1757.70271 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1929.80226 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,27.01941 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,6.21011 -Industry,Steel,non_energetic,co2,kton CO2-eq,16.42348 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5072.69447 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,335.63607 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,451.71965 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.04293 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,313.78377 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,4418.98496 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2015,kton CO2-eq,1039.61737 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2015,kton CO2-eq,134.64905 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,18863.47433 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2015,kton CO2-eq,55.64044 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2015,kton CO2-eq,86.58466 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2015,kton CO2-eq,386.36696 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2015,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2015,kton CO2-eq,355.6666 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2015,kton CO2-eq,40.86544 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2015,kton CO2-eq,135.16769 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2015,kton CO2-eq,721.14132 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2015,kton CO2-eq,433.18467 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2015,kton CO2-eq,39.9058 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2015,kton CO2-eq,5.84769 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2015,kton CO2-eq,1410.82032 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2015,kton CO2-eq,1569.73308 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2015,kton CO2-eq,329.33935 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2015,kton CO2-eq,13.54267 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2015,kton CO2-eq,97.6826 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2015,kton CO2-eq,1757.70271 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2015,kton CO2-eq,1929.80226 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2015,kton CO2-eq,27.01941 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2015,kton CO2-eq,6.21011 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2015,kton CO2-eq,16.42348 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2015,kton CO2-eq,5072.69447 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2015,kton CO2-eq,335.63607 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2015,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2015,kton CO2-eq,451.71965 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2015,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2015,kton CO2-eq,0.04293 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2015,kton CO2-eq,313.78377 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2015,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,4418.98496 diff --git a/datasets/nl2018/emissions.csv b/datasets/nl2018/emissions.csv index 728434d866..ba9f1028b3 100644 --- a/datasets/nl2018/emissions.csv +++ b/datasets/nl2018/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1039.61737 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,134.64905 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,18863.47433 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,55.64044 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,86.58466 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,386.36696 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,355.6666 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,40.86544 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,135.16769 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,721.14132 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,433.18467 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,39.9058 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,5.84769 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,1410.82032 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1569.73308 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,329.33935 -Industry,Food,non_energetic,co2,kton CO2-eq,13.54267 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,97.6826 -Industry,Other,non_energetic,co2,kton CO2-eq,1757.70271 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1929.80226 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,27.01941 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,6.21011 -Industry,Steel,non_energetic,co2,kton CO2-eq,16.42348 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,5072.69447 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,335.63607 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,451.71965 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.04293 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,313.78377 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,4418.98496 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2015,kton CO2-eq,1039.61737 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2015,kton CO2-eq,134.64905 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,18863.47433 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2015,kton CO2-eq,55.64044 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2015,kton CO2-eq,86.58466 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2015,kton CO2-eq,386.36696 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2015,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2015,kton CO2-eq,355.6666 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2015,kton CO2-eq,40.86544 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2015,kton CO2-eq,135.16769 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2015,kton CO2-eq,721.14132 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2015,kton CO2-eq,433.18467 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2015,kton CO2-eq,39.9058 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2015,kton CO2-eq,5.84769 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2015,kton CO2-eq,1410.82032 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2015,kton CO2-eq,1569.73308 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2015,kton CO2-eq,329.33935 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2015,kton CO2-eq,13.54267 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2015,kton CO2-eq,97.6826 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2015,kton CO2-eq,1757.70271 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2015,kton CO2-eq,1929.80226 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2015,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2015,kton CO2-eq,27.01941 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2015,kton CO2-eq,6.21011 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2015,kton CO2-eq,16.42348 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2015,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2015,kton CO2-eq,5072.69447 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2015,kton CO2-eq,335.63607 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2015,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2015,kton CO2-eq,451.71965 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2015,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2015,kton CO2-eq,0.04293 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2015,kton CO2-eq,313.78377 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2015,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2015,kton CO2-eq,4418.98496 diff --git a/datasets/nl2019/emissions.csv b/datasets/nl2019/emissions.csv index 6f7fef0c1a..4787b07bd4 100755 --- a/datasets/nl2019/emissions.csv +++ b/datasets/nl2019/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1263.93948 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,85.16185 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,18361.45468 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,54.73425 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,90.46196 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,389.13233 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,319.1768 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,29.87723 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,109.00431 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,505.09517 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,409.0108 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,132.20487 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,24.5274 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,2102.22198 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,1659.24385 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,263.85759 -Industry,Food,non_energetic,co2,kton CO2-eq,16.40112 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,101.6442 -Industry,Other,non_energetic,co2,kton CO2-eq,1490.79637 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,1270.95703 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,27.18206 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,11.05792 -Industry,Steel,non_energetic,co2,kton CO2-eq,18.10682 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,3848.40368 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,327.49089 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,431.12829 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.03942 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,315.26476 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,3805.72621 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2019,kton CO2-eq,1263.93948 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2019,kton CO2-eq,85.16185 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,18361.45468 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2019,kton CO2-eq,54.73425 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2019,kton CO2-eq,90.46196 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2019,kton CO2-eq,389.13233 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2019,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2019,kton CO2-eq,319.1768 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2019,kton CO2-eq,29.87723 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2019,kton CO2-eq,109.00431 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2019,kton CO2-eq,505.09517 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2019,kton CO2-eq,409.0108 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2019,kton CO2-eq,132.20487 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2019,kton CO2-eq,24.5274 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2019,kton CO2-eq,2102.22198 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2019,kton CO2-eq,1659.24385 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2019,kton CO2-eq,263.85759 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2019,kton CO2-eq,16.40112 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2019,kton CO2-eq,101.6442 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2019,kton CO2-eq,1490.79637 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2019,kton CO2-eq,1270.95703 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2019,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2019,kton CO2-eq,27.18206 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2019,kton CO2-eq,11.05792 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2019,kton CO2-eq,18.10682 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2019,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2019,kton CO2-eq,3848.40368 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2019,kton CO2-eq,327.49089 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2019,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2019,kton CO2-eq,431.12829 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2019,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2019,kton CO2-eq,0.03942 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2019,kton CO2-eq,315.26476 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2019,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2019,kton CO2-eq,3805.72621 diff --git a/datasets/nl2023/efficiencies/households_space_heater_hybrid_heatpump_air_water_electricity_efficiency.csv b/datasets/nl2023/efficiencies/households_space_heater_hybrid_heatpump_air_water_electricity_efficiency.csv index ea28205210..8db0bc6cb4 100644 --- a/datasets/nl2023/efficiencies/households_space_heater_hybrid_heatpump_air_water_electricity_efficiency.csv +++ b/datasets/nl2023/efficiencies/households_space_heater_hybrid_heatpump_air_water_electricity_efficiency.csv @@ -1,4 +1,4 @@ key,share -input.network_gas,1.53587913957917E-01 -input.electricity,1.53893106553106E-01 -input.ambient_heat,6.92518979488977E-01 \ No newline at end of file +input.network_gas,1.62163856582690E-01 +input.electricity,1.86185535173166E-01 +input.ambient_heat,6.51650608244144E-01 \ No newline at end of file diff --git a/datasets/nl2023/efficiencies/households_water_heater_hybrid_heatpump_air_water_electricity_efficiency.csv b/datasets/nl2023/efficiencies/households_water_heater_hybrid_heatpump_air_water_electricity_efficiency.csv index a3c42cee76..f1929f74e9 100644 --- a/datasets/nl2023/efficiencies/households_water_heater_hybrid_heatpump_air_water_electricity_efficiency.csv +++ b/datasets/nl2023/efficiencies/households_water_heater_hybrid_heatpump_air_water_electricity_efficiency.csv @@ -1,4 +1,4 @@ key,share -input.network_gas,2.64994257684226E-01 -input.electricity,1.83751435578943E-01 -input.ambient_heat,5.51254306736831E-01 \ No newline at end of file +input.network_gas,1.00000000000000E+00 +input.electricity,0.00000000000000E+00 +input.ambient_heat,0.00000000000000E+00 \ No newline at end of file diff --git a/datasets/nl2023/emissions.csv b/datasets/nl2023/emissions.csv index cad3af2a14..db22284330 100755 --- a/datasets/nl2023/emissions.csv +++ b/datasets/nl2023/emissions.csv @@ -1,42 +1,99 @@ -etm_sector,etm_subsector,use,ghg,unit,value -Agriculture,Non-specified,energetic,other_ghg,kton CO2-eq,1056.7491 -Agriculture,Non-specified,non_energetic,co2,kton CO2-eq,93.21328 -Agriculture,Non-specified,non_energetic,other_ghg,kton CO2-eq,17888.11512 -Buildings,Non-specified,energetic,other_ghg,kton CO2-eq,64.31237 -Bunkers,International aviation,energetic,other_ghg,kton CO2-eq,77.41099 -Bunkers,International navigation,energetic,other_ghg,kton CO2-eq,474.73962 -Energy,CCUS,non_energetic,co2,kton CO2-eq,0.0 -Energy,Electricity and heat production,energetic,other_ghg,kton CO2-eq,275.87953 -Energy,Fuels production,energetic,other_ghg,kton CO2-eq,14.74504 -Energy,Fugitive emissions,non_energetic,co2,kton CO2-eq,104.21416 -Energy,Fugitive emissions,non_energetic,other_ghg,kton CO2-eq,476.66386 -Energy,Hydrogen production,non_energetic,other_ghg,kton CO2-eq,0.0 -Energy,Methanol production,non_energetic,other_ghg,kton CO2-eq,0.0 -Households,Non-specified,energetic,other_ghg,kton CO2-eq,322.39822 -Industry,Aluminium,non_energetic,co2,kton CO2-eq,0.0 -Industry,Aluminium,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Chemicals,non_energetic,co2,kton CO2-eq,7991.64967 -Industry,Chemicals,non_energetic,other_ghg,kton CO2-eq,799.45639 -Industry,Fertilizers,non_energetic,other_ghg,kton CO2-eq,67.79018 -Industry,Food,non_energetic,co2,kton CO2-eq,26.84936 -Industry,Food,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Non-specified,energetic,other_ghg,kton CO2-eq,86.20713 -Industry,Other,non_energetic,co2,kton CO2-eq,1338.28324 -Industry,Other,non_energetic,other_ghg,kton CO2-eq,855.46837 -Industry,Other metals,non_energetic,co2,kton CO2-eq,0.0 -Industry,Other metals,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Paper,non_energetic,co2,kton CO2-eq,0.0 -Industry,Paper,non_energetic,other_ghg,kton CO2-eq,0.0 -Industry,Refineries,energetic,other_ghg,kton CO2-eq,22.76402 -Industry,Refineries,non_energetic,other_ghg,kton CO2-eq,8.4411 -Industry,Steel,non_energetic,co2,kton CO2-eq,8.52287 -Industry,Steel,non_energetic,other_ghg,kton CO2-eq,0.0 -LULUCF,Emissions,non_energetic,co2,kton CO2-eq,3114.54657 -LULUCF,Emissions,non_energetic,other_ghg,kton CO2-eq,689.90869 -LULUCF,Removals,non_energetic,co2,kton CO2-eq,0.0 -Other,Indirect emissions,non_energetic,co2,kton CO2-eq,432.73137 -Other,Non-specified,energetic,other_ghg,kton CO2-eq,0.0 -Other,Other transportation,energetic,other_ghg,kton CO2-eq,0.03339 -Transport,Non-specified,energetic,other_ghg,kton CO2-eq,400.53617 -Waste,Non-specified,non_energetic,co2,kton CO2-eq,0.0 -Waste,Non-specified,non_energetic,other_ghg,kton CO2-eq,2844.47524 +etm_sector,etm_subsector,use,ghg,year,unit,value +Agriculture,Non-specified,energetic,co2,1990,kton CO2-eq,7552.52228 +Agriculture,Non-specified,energetic,other_ghg,1990,kton CO2-eq,79.09037 +Agriculture,Non-specified,energetic,other_ghg,2023,kton CO2-eq,1056.7491 +Agriculture,Non-specified,non_energetic,co2,1990,kton CO2-eq,184.6671 +Agriculture,Non-specified,non_energetic,co2,2023,kton CO2-eq,93.21328 +Agriculture,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,24977.65195 +Agriculture,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,17888.11512 +Buildings,Non-specified,energetic,co2,1990,kton CO2-eq,7865.58289 +Buildings,Non-specified,energetic,other_ghg,1990,kton CO2-eq,53.88762 +Buildings,Non-specified,energetic,other_ghg,2023,kton CO2-eq,64.31237 +Bunkers,International aviation,energetic,co2,1990,kton CO2-eq,4604.35501 +Bunkers,International aviation,energetic,other_ghg,1990,kton CO2-eq,35.03174 +Bunkers,International aviation,energetic,other_ghg,2023,kton CO2-eq,77.41099 +Bunkers,International navigation,energetic,co2,1990,kton CO2-eq,34944.30987 +Bunkers,International navigation,energetic,other_ghg,1990,kton CO2-eq,328.83136 +Bunkers,International navigation,energetic,other_ghg,2023,kton CO2-eq,474.73962 +Energy,CCUS,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,CCUS,non_energetic,co2,2023,kton CO2-eq,0.0 +Energy,Electricity and heat production,energetic,co2,1990,kton CO2-eq,40025.99208 +Energy,Electricity and heat production,energetic,other_ghg,1990,kton CO2-eq,161.74773 +Energy,Electricity and heat production,energetic,other_ghg,2023,kton CO2-eq,275.87953 +Energy,Fuels production,energetic,co2,1990,kton CO2-eq,2110.46382 +Energy,Fuels production,energetic,other_ghg,1990,kton CO2-eq,20.79639 +Energy,Fuels production,energetic,other_ghg,2023,kton CO2-eq,14.74504 +Energy,Fugitive emissions,non_energetic,co2,1990,kton CO2-eq,885.0689 +Energy,Fugitive emissions,non_energetic,co2,2023,kton CO2-eq,104.21416 +Energy,Fugitive emissions,non_energetic,other_ghg,1990,kton CO2-eq,2159.24014 +Energy,Fugitive emissions,non_energetic,other_ghg,2023,kton CO2-eq,476.66386 +Energy,Hydrogen production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Hydrogen production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,co2,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Energy,Methanol production,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Households,Non-specified,energetic,co2,1990,kton CO2-eq,20696.39577 +Households,Non-specified,energetic,other_ghg,1990,kton CO2-eq,522.56993 +Households,Non-specified,energetic,other_ghg,2023,kton CO2-eq,322.39822 +Industry,Aluminium,non_energetic,co2,1990,kton CO2-eq,408.41713 +Industry,Aluminium,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Aluminium,non_energetic,other_ghg,1990,kton CO2-eq,2373.8733 +Industry,Aluminium,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Chemicals,non_energetic,co2,1990,kton CO2-eq,1437.0274 +Industry,Chemicals,non_energetic,co2,2023,kton CO2-eq,7991.64967 +Industry,Chemicals,non_energetic,other_ghg,1990,kton CO2-eq,5874.1068 +Industry,Chemicals,non_energetic,other_ghg,2023,kton CO2-eq,799.45639 +Industry,Fertilizers,non_energetic,co2,1990,kton CO2-eq,2694.99351 +Industry,Fertilizers,non_energetic,other_ghg,1990,kton CO2-eq,5410.86301 +Industry,Fertilizers,non_energetic,other_ghg,2023,kton CO2-eq,67.79018 +Industry,Food,non_energetic,co2,1990,kton CO2-eq,72.483 +Industry,Food,non_energetic,co2,2023,kton CO2-eq,26.84936 +Industry,Food,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Food,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Non-specified,energetic,co2,1990,kton CO2-eq,32918.34478 +Industry,Non-specified,energetic,other_ghg,1990,kton CO2-eq,99.11533 +Industry,Non-specified,energetic,other_ghg,2023,kton CO2-eq,86.20713 +Industry,Other,non_energetic,co2,1990,kton CO2-eq,1598.0667 +Industry,Other,non_energetic,co2,2023,kton CO2-eq,1338.28324 +Industry,Other,non_energetic,other_ghg,1990,kton CO2-eq,494.86536 +Industry,Other,non_energetic,other_ghg,2023,kton CO2-eq,855.46837 +Industry,Other metals,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Other metals,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,co2,2023,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Paper,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +Industry,Refineries,energetic,co2,1990,kton CO2-eq,11010.40499 +Industry,Refineries,energetic,other_ghg,1990,kton CO2-eq,26.59095 +Industry,Refineries,energetic,other_ghg,2023,kton CO2-eq,22.76402 +Industry,Refineries,non_energetic,co2,1990,kton CO2-eq,0.0 +Industry,Refineries,non_energetic,other_ghg,1990,kton CO2-eq,17.21821 +Industry,Refineries,non_energetic,other_ghg,2023,kton CO2-eq,8.4411 +Industry,Steel,non_energetic,co2,1990,kton CO2-eq,43.67845 +Industry,Steel,non_energetic,co2,2023,kton CO2-eq,8.52287 +Industry,Steel,non_energetic,other_ghg,1990,kton CO2-eq,0.0 +Industry,Steel,non_energetic,other_ghg,2023,kton CO2-eq,0.0 +LULUCF,Emissions,non_energetic,co2,1990,kton CO2-eq,5832.66419 +LULUCF,Emissions,non_energetic,co2,2023,kton CO2-eq,3114.54657 +LULUCF,Emissions,non_energetic,other_ghg,1990,kton CO2-eq,404.46709 +LULUCF,Emissions,non_energetic,other_ghg,2023,kton CO2-eq,689.90869 +LULUCF,Removals,non_energetic,co2,1990,kton CO2-eq,0.0 +LULUCF,Removals,non_energetic,co2,2023,kton CO2-eq,0.0 +Other,Indirect emissions,non_energetic,co2,1990,kton CO2-eq,917.19155 +Other,Indirect emissions,non_energetic,co2,2023,kton CO2-eq,432.73137 +Other,Non-specified,energetic,co2,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,1990,kton CO2-eq,0.0 +Other,Non-specified,energetic,other_ghg,2023,kton CO2-eq,0.0 +Other,Other transportation,energetic,co2,1990,kton CO2-eq,342.21747 +Other,Other transportation,energetic,other_ghg,1990,kton CO2-eq,0.15966 +Other,Other transportation,energetic,other_ghg,2023,kton CO2-eq,0.03339 +Transport,Non-specified,energetic,co2,1990,kton CO2-eq,31633.80872 +Transport,Non-specified,energetic,other_ghg,1990,kton CO2-eq,346.87057 +Transport,Non-specified,energetic,other_ghg,2023,kton CO2-eq,400.53617 +Waste,Non-specified,non_energetic,co2,1990,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,co2,2023,kton CO2-eq,0.0 +Waste,Non-specified,non_energetic,other_ghg,1990,kton CO2-eq,16485.71479 +Waste,Non-specified,non_energetic,other_ghg,2023,kton CO2-eq,2844.47524 diff --git a/datasets/nl2023/shares/energy/residences_final_demand_electricity_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_electricity_parent_share.csv index 5ae5eb9e15..317f43d53d 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_electricity_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_electricity_parent_share.csv @@ -1,7 +1,7 @@ key,share -households_final_demand_for_cooling_electricity,1.74442272589000E-02 -households_final_demand_for_space_heating_electricity,1.41332525618111E-01 -households_final_demand_for_hot_water_electricity,7.89117402886700E-02 -households_final_demand_for_cooking_electricity,3.66316528640784E-02 -households_final_demand_for_lighting_electricity,9.71106712866610E-02 -households_final_demand_for_applicances_electricity,6.28569182683579E-01 \ No newline at end of file +households_final_demand_for_cooling_electricity,1.76994573116794E-02 +households_final_demand_for_space_heating_electricity,1.76496686762675E-01 +households_final_demand_for_hot_water_electricity,3.23388136990158E-02 +households_final_demand_for_cooking_electricity,3.71676180607669E-02 +households_final_demand_for_lighting_electricity,9.85315173574029E-02 +households_final_demand_for_applicances_electricity,6.37765906808460E-01 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_electricity_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_electricity_parent_share.csv index a56b6e5512..c126d41b9c 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_electricity_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_electricity_parent_share.csv @@ -1,6 +1,6 @@ key,share -households_water_heater_heatpump_air_water_electricity,4.98754607356419E-01 -households_water_heater_heatpump_ground_water_electricity,7.90668813655589E-02 -households_water_heater_resistive_electricity,4.04251724275038E-01 -households_water_heater_hybrid_heatpump_air_water_electricity,1.79267870029840E-02 +households_water_heater_heatpump_air_water_electricity,6.52366325863845E-01 +households_water_heater_heatpump_ground_water_electricity,1.11126926854109E-01 +households_water_heater_resistive_electricity,2.36506747282046E-01 +households_water_heater_hybrid_heatpump_air_water_electricity,0.00000000000000E+00 households_water_heater_heatpump_surface_water_water_ts_electricity,0.00000000000000E+00 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_network_gas_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_network_gas_parent_share.csv index 602caeef05..30bc21ac86 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_network_gas_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_for_hot_water_network_gas_parent_share.csv @@ -1,4 +1,4 @@ key,share -households_water_heater_combined_network_gas,9.97067376896118E-01 +households_water_heater_combined_network_gas,9.92198731771223E-01 households_water_heater_network_gas,0.00000000000000E+00 -households_water_heater_hybrid_heatpump_air_water_electricity,2.93262310388158E-03 \ No newline at end of file +households_water_heater_hybrid_heatpump_air_water_electricity,7.80126822877674E-03 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_electricity_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_electricity_parent_share.csv index e6df938042..b163827f3b 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_electricity_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_electricity_parent_share.csv @@ -1,6 +1,6 @@ key,share -households_space_heater_electricity,3.92259951157488E-01 -households_space_heater_heatpump_air_water_electricity,5.00658809437908E-01 -households_space_heater_heatpump_ground_water_electricity,8.58068643157003E-02 -households_space_heater_hybrid_heatpump_air_water_electricity,2.12743750889039E-02 +households_space_heater_electricity,5.18304995130804E-01 +households_space_heater_heatpump_air_water_electricity,3.83243045452293E-01 +households_space_heater_heatpump_ground_water_electricity,6.03277571712002E-02 +households_space_heater_hybrid_heatpump_air_water_electricity,3.81242022457029E-02 households_space_heater_heatpump_surface_water_water_ts_electricity,0.00000000000000E+00 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_network_gas_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_network_gas_parent_share.csv index 88df7930aa..97322a9f27 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_network_gas_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_for_space_heating_network_gas_parent_share.csv @@ -1,4 +1,4 @@ key,share households_space_heater_network_gas,0.00000000000000E+00 -households_space_heater_combined_network_gas,9.98388428119897E-01 -households_space_heater_hybrid_heatpump_air_water_electricity,1.61157188010273E-03 \ No newline at end of file +households_space_heater_combined_network_gas,9.96779565819889E-01 +households_space_heater_hybrid_heatpump_air_water_electricity,3.22043418011121E-03 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_network_gas_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_network_gas_parent_share.csv index 313b2aaf31..b2aff88c3b 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_network_gas_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_network_gas_parent_share.csv @@ -1,5 +1,5 @@ key,share -households_final_demand_for_cooking_network_gas,2.40718986006603E-02 +households_final_demand_for_cooking_network_gas,2.39827395498925E-02 households_final_demand_for_cooling_network_gas,0.00000000000000E+00 -households_final_demand_for_hot_water_network_gas,2.65438604839786E-01 -households_final_demand_for_space_heating_network_gas,7.10489496559554E-01 \ No newline at end of file +households_final_demand_for_hot_water_network_gas,2.81630299756507E-01 +households_final_demand_for_space_heating_network_gas,6.94386960693601E-01 \ No newline at end of file diff --git a/datasets/nl2023/shares/energy/residences_final_demand_steam_hot_water_parent_share.csv b/datasets/nl2023/shares/energy/residences_final_demand_steam_hot_water_parent_share.csv index 520b21cd26..b96dbb4f31 100644 --- a/datasets/nl2023/shares/energy/residences_final_demand_steam_hot_water_parent_share.csv +++ b/datasets/nl2023/shares/energy/residences_final_demand_steam_hot_water_parent_share.csv @@ -1,3 +1,3 @@ key,share -households_final_demand_for_hot_water_steam_hot_water,4.31089916038495E-01 -households_final_demand_for_space_heating_steam_hot_water,5.68910083961505E-01 \ No newline at end of file +households_final_demand_for_hot_water_steam_hot_water,4.38476898806052E-01 +households_final_demand_for_space_heating_steam_hot_water,5.61523101193948E-01 \ No newline at end of file diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_future.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_future.gql index 72e37014cc..7d3cbc2806 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_future.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_future.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for buildings_future -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_buildings_future) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_present.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_present.gql index e666baa1d8..0a9ce40eab 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_present.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_present.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for buildings_present -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_buildings_present) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1945_1964.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1945_1964.gql index ff858eb4d2..6605271903 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1945_1964.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1945_1964.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_1945_1964 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1945_1964) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1965_1984.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1965_1984.gql index c3978acf80..d4411d0474 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1965_1984.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1965_1984.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_1965_1984 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1965_1984) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1985_2004.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1985_2004.gql index cfea5363a9..e96624b6e7 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1985_2004.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_1985_2004.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_1985_2004 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1985_2004) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_2005_present.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_2005_present.gql index ba41887631..287cbbbb82 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_2005_present.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_2005_present.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_2005_present -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_2005_present) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_before_1945.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_before_1945.gql index 73196f9586..175c04e2c5 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_before_1945.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_before_1945.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_before_1945 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_before_1945) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_future.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_future.gql index 9ae913c316..fa7b04c120 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_future.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/apartments/costs_of_insulation_apartments_future.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for apartments_future -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_future) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1945_1964.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1945_1964.gql index c70f0d1f4b..673fb8ad29 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1945_1964.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1945_1964.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_1945_1964 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1965_1984.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1965_1984.gql index edaa7c55d8..e71ea4d4c1 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1965_1984.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1965_1984.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_1965_1984 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1985_2004.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1985_2004.gql index e1245bbfd1..6132936bd0 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1985_2004.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_1985_2004.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_1985_2004 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_2005_present.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_2005_present.gql index 0127ca4d33..a57ecbf420 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_2005_present.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_2005_present.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_2005_present -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_before_1945.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_before_1945.gql index 9e7c23b62d..2716a8a1c2 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_before_1945.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_before_1945.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_before_1945 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_future.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_future.gql index e692a8ac32..fd627e85f7 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_future.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/detached_houses/costs_of_insulation_detached_houses_future.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for detached_houses_future -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_future) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1945_1964.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1945_1964.gql index c84e78ffb6..0464a8337e 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1945_1964.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1945_1964.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_1945_1964 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1965_1984.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1965_1984.gql index 643e1b7f43..2842cd6008 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1965_1984.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1965_1984.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_1965_1984 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1985_2004.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1985_2004.gql index f80dd30422..d4a092d4e0 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1985_2004.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_1985_2004.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_1985_2004 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_2005_present.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_2005_present.gql index 8f51b2ee97..37790b3166 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_2005_present.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_2005_present.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_2005_present -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_before_1945.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_before_1945.gql index 7ad641d639..ad1b70659f 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_before_1945.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_before_1945.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_before_1945 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_future.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_future.gql index 52d453b9eb..2d03a43443 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_future.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/semi_detached_houses/costs_of_insulation_semi_detached_houses_future.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for semi_detached_houses_future -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_future) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1945_1964.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1945_1964.gql index 7aea7fcc2a..6bad43c1cb 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1945_1964.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1945_1964.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_1945_1964 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1965_1984.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1965_1984.gql index d1aacda557..3d84bc6fd9 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1965_1984.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1965_1984.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_1965_1984 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1985_2004.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1985_2004.gql index afa95ec91f..1a7b196462 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1985_2004.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_1985_2004.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_1985_2004 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_2005_present.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_2005_present.gql index 3762878057..db31c3500a 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_2005_present.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_2005_present.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_2005_present -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_before_1945.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_before_1945.gql index 79929cb4ba..35afe900d2 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_before_1945.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_before_1945.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_before_1945 -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945) }); diff --git a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_future.gql b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_future.gql index 5943e40070..32a239d58f 100644 --- a/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_future.gql +++ b/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/households/terraced_houses/costs_of_insulation_terraced_houses_future.gql @@ -1,7 +1,7 @@ # This query calculates the insulation costs for terraced_houses_future -# The calculated costs are only updated for the future year, in the present year +# The calculated costs are only updated for the future year, in the present year # the insulation costs are assumed to be zero. This is done with IF-statements. -# See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs +# See https://docs.energytransitionmodel.com/main/cost-insulation-costs - query = insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_future) }); diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/miscellaneous/direct_emissions_indirect_emissions_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/miscellaneous/direct_emissions_indirect_emissions_co2_1990.gql new file mode 100644 index 0000000000..d51addf170 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/miscellaneous/direct_emissions_indirect_emissions_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_subsector, "Indirect emissions", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_agriculture_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_agriculture_co2_1990.gql new file mode 100644 index 0000000000..d85f2d3233 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_agriculture_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Agriculture", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_buildings_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_buildings_co2_1990.gql new file mode 100644 index 0000000000..8d66257262 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_buildings_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Buildings", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_bunkers_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_bunkers_co2_1990.gql new file mode 100644 index 0000000000..849289ef5d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_bunkers_co2_1990.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_shipping), 100.0), + EMISSIONS(emissions_subsector, "International navigation", co2, 1990) + ), + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_aviation), 100.0), + EMISSIONS(emissions_subsector, "International aviation", co2, 1990) + ) + ), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_energy_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_energy_co2_1990.gql new file mode 100644 index 0000000000..01190098ed --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_energy_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Energy", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_households_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_households_co2_1990.gql new file mode 100644 index 0000000000..08f1a64ba8 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_households_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Households", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_industry_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_industry_co2_1990.gql new file mode 100644 index 0000000000..91d1c81a4d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_industry_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Industry", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_lulucf_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_lulucf_co2_1990.gql new file mode 100644 index 0000000000..c0c29e86ea --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_lulucf_co2_1990.gql @@ -0,0 +1,13 @@ +# LULUCF removals should be handled as negative CO2 emissions. +# For the other GHG direct_emissions_lulucf_other_ghg_1990, no separate handling is required for +# emissions/removals since per definition, other GHG in the LULUCF category can only be emissions. + +- unit = MT +- query = + DIVIDE( + SUM( + EMISSIONS(lulucf_emissions, non_energetic, co2, 1990), + NEG(EMISSIONS(lulucf_removals, non_energetic, co2, 1990)) + ), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_other_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_other_co2_1990.gql new file mode 100644 index 0000000000..e6bb005cd3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_other_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Other", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_transport_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_transport_co2_1990.gql new file mode 100644 index 0000000000..ed2df2bc89 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_transport_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "National transport", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_waste_co2_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_waste_co2_1990.gql new file mode 100644 index 0000000000..eea17d20bd --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/co2/direct_emissions_waste_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Waste", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_agriculture_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_agriculture_other_ghg_1990.gql new file mode 100644 index 0000000000..cc15520fed --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_agriculture_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Agriculture", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_buildings_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_buildings_other_ghg_1990.gql new file mode 100644 index 0000000000..44c4fa5fb9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_buildings_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Buildings", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_bunkers_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_bunkers_other_ghg_1990.gql new file mode 100644 index 0000000000..19d2f77ebb --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_bunkers_other_ghg_1990.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_shipping), 100.0), + EMISSIONS(emissions_subsector, "International navigation", other_ghg, 1990) + ), + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_aviation), 100.0), + EMISSIONS(emissions_subsector, "International aviation", other_ghg, 1990) + ) + ), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_energy_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_energy_other_ghg_1990.gql new file mode 100644 index 0000000000..c584ab1cec --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_energy_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Energy", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_households_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_households_other_ghg_1990.gql new file mode 100644 index 0000000000..293d4f9ce3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_households_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Households", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_industry_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_industry_other_ghg_1990.gql new file mode 100644 index 0000000000..12af3bf202 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_industry_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Industry", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_lulucf_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_lulucf_other_ghg_1990.gql new file mode 100644 index 0000000000..5cce67a3fa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_lulucf_other_ghg_1990.gql @@ -0,0 +1,10 @@ +# No separate handling required for emissions/removals since per definition, other GHG in the +# LULUCF category can only be emissions. For the CO2 query direct_emissions_lulucf_co2_1990, +# removals and emissions are handled separately. + +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "LULUCF", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_other_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_other_other_ghg_1990.gql new file mode 100644 index 0000000000..f345431562 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_other_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Other", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_transport_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_transport_other_ghg_1990.gql new file mode 100644 index 0000000000..4a09f723af --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_transport_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "National transport", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_waste_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_waste_other_ghg_1990.gql new file mode 100644 index 0000000000..0c09318774 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/other_ghg/direct_emissions_waste_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(emissions_sector, "Waste", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_agriculture_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_agriculture_total_ghg_1990.gql new file mode 100644 index 0000000000..b1d7037917 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_agriculture_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_agriculture_co2_1990), + Q(direct_emissions_agriculture_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_buildings_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_buildings_total_ghg_1990.gql new file mode 100644 index 0000000000..2bcde9ae30 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_buildings_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_buildings_co2_1990), + Q(direct_emissions_buildings_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_bunkers_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_bunkers_total_ghg_1990.gql new file mode 100644 index 0000000000..136c3a4f24 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_bunkers_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_bunkers_co2_1990), + Q(direct_emissions_bunkers_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_energy_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_energy_total_ghg_1990.gql new file mode 100644 index 0000000000..aebd3e0eb3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_energy_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_co2_1990), + Q(direct_emissions_energy_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_households_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_households_total_ghg_1990.gql new file mode 100644 index 0000000000..07592a5beb --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_households_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_households_co2_1990), + Q(direct_emissions_households_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_industry_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_industry_total_ghg_1990.gql new file mode 100644 index 0000000000..6172f8a73e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_industry_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_industry_co2_1990), + Q(direct_emissions_industry_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_lulucf_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_lulucf_total_ghg_1990.gql new file mode 100644 index 0000000000..94239d8bb2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_lulucf_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_lulucf_co2_1990), + Q(direct_emissions_lulucf_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_other_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_other_total_ghg_1990.gql new file mode 100644 index 0000000000..2ce9966ceb --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_other_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_other_co2_1990), + Q(direct_emissions_other_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_transport_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_transport_total_ghg_1990.gql new file mode 100644 index 0000000000..a343d5b7e6 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_transport_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_transport_co2_1990), + Q(direct_emissions_transport_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_waste_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_waste_total_ghg_1990.gql new file mode 100644 index 0000000000..25e2d28362 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/per_sector/total_ghg/direct_emissions_waste_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_waste_co2_1990), + Q(direct_emissions_waste_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..a633149172 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions excl. indirect emissions, LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_indirect_emissions_co2_1990)), + NEG(Q(direct_emissions_lulucf_co2_1990)), + NEG(Q(direct_emissions_bunkers_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..386d3e7f77 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions incl. indirect emissions, excl. LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_lulucf_co2_1990)), + NEG(Q(direct_emissions_bunkers_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..0c2870eced --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,16 @@ +# Total CO2 emissions incl. indirect emissions, LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_co2_1990), + Q(direct_emissions_industry_co2_1990), + Q(direct_emissions_transport_co2_1990), + Q(direct_emissions_buildings_co2_1990), + Q(direct_emissions_households_co2_1990), + Q(direct_emissions_agriculture_co2_1990), + Q(direct_emissions_other_co2_1990), + Q(direct_emissions_lulucf_co2_1990), + Q(direct_emissions_waste_co2_1990), + Q(direct_emissions_bunkers_co2_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..3e802f176c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total CO2 emissions incl. indirect emissions and LULUCF, excl. international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_bunkers_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..29a6ca5b5e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions incl. LULUCF, excl indirect emissions and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_indirect_emissions_co2_1990)), + NEG(Q(direct_emissions_bunkers_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..701b4885c3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions excl. indirect emissions, LULUCF and international transport for 1990 +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_lulucf_other_ghg_1990)), + NEG(Q(direct_emissions_bunkers_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..70b31c703a --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions incl. indirect emissions, excl. LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_lulucf_other_ghg_1990)), + NEG(Q(direct_emissions_bunkers_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..6401760efa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,16 @@ +# Total other GHG emissions incl. indirect emissions, LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_other_ghg_1990), + Q(direct_emissions_industry_other_ghg_1990), + Q(direct_emissions_transport_other_ghg_1990), + Q(direct_emissions_buildings_other_ghg_1990), + Q(direct_emissions_households_other_ghg_1990), + Q(direct_emissions_agriculture_other_ghg_1990), + Q(direct_emissions_other_other_ghg_1990), + Q(direct_emissions_lulucf_other_ghg_1990), + Q(direct_emissions_waste_other_ghg_1990), + Q(direct_emissions_bunkers_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..8cf66af3b4 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total other GHG emissions incl. indirect emissions and LULUCF, excl. international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_bunkers_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..eae06dfafa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions incl. LULUCF, excl indirect emissions and international transport for 1990 +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_bunkers_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..90e7d24440 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total GHG emissions excl. indirect emissions, LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers_1990), + Q(direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..a5603d626c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total GHG emissions incl. indirect emissions, excl. LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990), + Q(direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..eebdcefc41 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,16 @@ +# Total GHG emissions incl. indirect emissions, LULUCF and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_total_ghg_1990), + Q(direct_emissions_industry_total_ghg_1990), + Q(direct_emissions_transport_total_ghg_1990), + Q(direct_emissions_buildings_total_ghg_1990), + Q(direct_emissions_households_total_ghg_1990), + Q(direct_emissions_agriculture_total_ghg_1990), + Q(direct_emissions_other_total_ghg_1990), + Q(direct_emissions_lulucf_total_ghg_1990), + Q(direct_emissions_waste_total_ghg_1990), + Q(direct_emissions_bunkers_total_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..d61c0498a9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total GHG emissions incl. indirect emissions and LULUCF, excl. international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990), + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..e17cabf8a5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/1990/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,8 @@ +# Total GHG emissions incl. LULUCF, excl indirect emissions and international transport for 1990 + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990), + Q(direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_co2.gql new file mode 100644 index 0000000000..76789801d1 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_co2.gql @@ -0,0 +1,12 @@ + +- unit = MT +- query = + DIVIDE( + SUM( + MV( + MSECTOR(emissions_subsector, "Indirect emissions"), + direct_reporting_emissions_co2_production + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_total_ghg.gql new file mode 100644 index 0000000000..84732e6b02 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/miscellaneous/direct_emissions_indirect_emissions_total_ghg.gql @@ -0,0 +1,11 @@ +- unit = MT +- query = + DIVIDE( + SUM( + MV( + MSECTOR(emissions_subsector, "Indirect emissions"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_agriculture_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_agriculture_co2.gql new file mode 100644 index 0000000000..ff98f58371 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_agriculture_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Agriculture"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Agriculture"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_buildings_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_buildings_co2.gql new file mode 100644 index 0000000000..6f2eb7dee8 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_buildings_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Buildings"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Buildings"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_bunkers_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_bunkers_co2.gql new file mode 100644 index 0000000000..a9f886e6af --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_bunkers_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "International transport"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "International transport"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_energy_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_energy_co2.gql new file mode 100644 index 0000000000..9be388be46 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_energy_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Energy"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Energy"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_households_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_households_co2.gql new file mode 100644 index 0000000000..09cb10c000 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_households_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Households"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Households"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_industry_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_industry_co2.gql new file mode 100644 index 0000000000..212846a1f2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_industry_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Industry"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Industry"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_lulucf_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_lulucf_co2.gql new file mode 100644 index 0000000000..6603b2b4f3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_lulucf_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "LULUCF"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "LULUCF"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_other_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_other_co2.gql new file mode 100644 index 0000000000..78c04c9698 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_other_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Other"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Other"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_transport_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_transport_co2.gql new file mode 100644 index 0000000000..cb31d397cc --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_transport_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "National transport"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "National transport"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_waste_co2.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_waste_co2.gql new file mode 100644 index 0000000000..d24fbd50c2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/co2/direct_emissions_waste_co2.gql @@ -0,0 +1,17 @@ +# Net CO2 emissions defined by subtracting captured CO2 from gross produced CO2 + +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Waste"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(emissions_sector, "Waste"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_agriculture_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_agriculture_other_ghg.gql new file mode 100644 index 0000000000..265f9380e4 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_agriculture_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Agriculture"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Agriculture"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_buildings_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_buildings_other_ghg.gql new file mode 100644 index 0000000000..7b5e79cc98 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_buildings_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Buildings"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Buildings"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_bunkers_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_bunkers_other_ghg.gql new file mode 100644 index 0000000000..16c07cb8a5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_bunkers_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "International transport"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "International transport"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_energy_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_energy_other_ghg.gql new file mode 100644 index 0000000000..9073a30f4d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_energy_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Energy"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Energy"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_households_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_households_other_ghg.gql new file mode 100644 index 0000000000..447c644686 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_households_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Households"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Households"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_industry_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_industry_other_ghg.gql new file mode 100644 index 0000000000..6212bd6820 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_industry_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Industry"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Industry"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_lulucf_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_lulucf_other_ghg.gql new file mode 100644 index 0000000000..6f60c2456f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_lulucf_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "LULUCF"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "LULUCF"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_other_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_other_other_ghg.gql new file mode 100644 index 0000000000..857b0c6af1 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_other_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Other"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Other"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_transport_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_transport_other_ghg.gql new file mode 100644 index 0000000000..476d9c3b3b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_transport_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "National transport"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "National transport"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_waste_other_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_waste_other_ghg.gql new file mode 100644 index 0000000000..08db1bd4e0 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/other_ghg/direct_emissions_waste_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Waste"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Waste"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_agriculture_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_agriculture_total_ghg.gql new file mode 100644 index 0000000000..4277450948 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_agriculture_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Agriculture"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Agriculture"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_buildings_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_buildings_total_ghg.gql new file mode 100644 index 0000000000..e98894689e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_buildings_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Buildings"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Buildings"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_bunkers_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_bunkers_total_ghg.gql new file mode 100644 index 0000000000..da070f82e8 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_bunkers_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "International transport"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "International transport"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_energy_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_energy_total_ghg.gql new file mode 100644 index 0000000000..0f23f041d5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_energy_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Energy"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Energy"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_households_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_households_total_ghg.gql new file mode 100644 index 0000000000..7d1ad81976 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_households_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Households"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Households"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_industry_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_industry_total_ghg.gql new file mode 100644 index 0000000000..bfc6574e9c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_industry_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Industry"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Industry"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_lulucf_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_lulucf_total_ghg.gql new file mode 100644 index 0000000000..d059c2419f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_lulucf_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "LULUCF"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "LULUCF"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_other_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_other_total_ghg.gql new file mode 100644 index 0000000000..c79cc43f56 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_other_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Other"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Other"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_transport_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_transport_total_ghg.gql new file mode 100644 index 0000000000..ef5e2ceeb0 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_transport_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "National transport"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "National transport"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_waste_total_ghg.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_waste_total_ghg.gql new file mode 100644 index 0000000000..9e771fd768 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/per_sector/total_ghg/direct_emissions_waste_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(emissions_sector, "Waste"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(emissions_sector, "Waste"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..a29438493f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions excl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_indirect_emissions_co2)), + NEG(Q(direct_emissions_lulucf_co2)), + NEG(Q(direct_emissions_bunkers_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..5b71a1dd45 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions incl. indirect emissions, excl. LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_lulucf_co2)), + NEG(Q(direct_emissions_bunkers_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..a73506c8a1 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,16 @@ +# Total CO2 emissions incl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_co2), + Q(direct_emissions_industry_co2), + Q(direct_emissions_transport_co2), + Q(direct_emissions_buildings_co2), + Q(direct_emissions_households_co2), + Q(direct_emissions_agriculture_co2), + Q(direct_emissions_other_co2), + Q(direct_emissions_lulucf_co2), + Q(direct_emissions_waste_co2), + Q(direct_emissions_bunkers_co2) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..8d69281f50 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,8 @@ +# Total CO2 emissions incl. indirect emissions and LULUCF, excl. international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_bunkers_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..ec7995d14f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/co2/direct_emissions_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions incl. LULUCF, excl indirect emissions and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_indirect_emissions_co2)), + NEG(Q(direct_emissions_bunkers_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..67ff458bbe --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions excl. indirect emissions, LULUCF and international transport +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_lulucf_other_ghg)), + NEG(Q(direct_emissions_bunkers_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..36709e7855 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions incl. indirect emissions, excl. LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_lulucf_other_ghg)), + NEG(Q(direct_emissions_bunkers_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..7a4088bbc3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,16 @@ +# Total other GHG emissions incl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_other_ghg), + Q(direct_emissions_industry_other_ghg), + Q(direct_emissions_transport_other_ghg), + Q(direct_emissions_buildings_other_ghg), + Q(direct_emissions_households_other_ghg), + Q(direct_emissions_agriculture_other_ghg), + Q(direct_emissions_other_other_ghg), + Q(direct_emissions_lulucf_other_ghg), + Q(direct_emissions_waste_other_ghg), + Q(direct_emissions_bunkers_other_ghg) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..f17ed0d4ca --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,8 @@ +# Total other GHG emissions incl. indirect emissions and LULUCF, excl. international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_bunkers_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..db19feea83 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/other_ghg/direct_emissions_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions incl. LULUCF, excl indirect emissions and international transport +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_bunkers_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..0e0bd814c2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total GHG emissions excl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_indirect_emissions_total_ghg)), + NEG(Q(direct_emissions_lulucf_total_ghg)), + NEG(Q(direct_emissions_bunkers_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..34f0e85c36 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,9 @@ +# Total GHG emissions incl. indirect emissions, excl. LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_lulucf_total_ghg)), + NEG(Q(direct_emissions_bunkers_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..6112cb4154 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,16 @@ +# Total GHG emissions incl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_energy_total_ghg), + Q(direct_emissions_industry_total_ghg), + Q(direct_emissions_transport_total_ghg), + Q(direct_emissions_buildings_total_ghg), + Q(direct_emissions_households_total_ghg), + Q(direct_emissions_agriculture_total_ghg), + Q(direct_emissions_other_total_ghg), + Q(direct_emissions_lulucf_total_ghg), + Q(direct_emissions_waste_total_ghg), + Q(direct_emissions_bunkers_total_ghg) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..d0b0596eb5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,8 @@ +# Total GHG emissions incl. indirect emissions and LULUCF, excl. international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_bunkers_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..f01aba2b91 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/emissions_sector/totals/total_ghg/direct_emissions_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,9 @@ +# Total GHG emissions incl. LULUCF, excl indirect emissions and international transport + +- unit = MT +- query = + SUM( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_indirect_emissions_total_ghg)), + NEG(Q(direct_emissions_bunkers_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a1_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a1_co2_1990.gql new file mode 100644 index 0000000000..2564fe2a20 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a1_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.1", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a2_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a2_co2_1990.gql new file mode 100644 index 0000000000..64da0d9573 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a2_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.2", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a3_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a3_co2_1990.gql new file mode 100644 index 0000000000..26c513d281 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a3_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.3", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4a_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4a_co2_1990.gql new file mode 100644 index 0000000000..deeec9a28b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4a_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.a", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4b_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4b_co2_1990.gql new file mode 100644 index 0000000000..ecdfbb2bf0 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4b_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.b", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4c_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4c_co2_1990.gql new file mode 100644 index 0000000000..a1f70b888e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a4c_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.c", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a5_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a5_co2_1990.gql new file mode 100644 index 0000000000..ce99980dc3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1a5_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.5", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1b_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1b_co2_1990.gql new file mode 100644 index 0000000000..20a8d3a021 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1b_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.B", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1c_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1c_co2_1990.gql new file mode 100644 index 0000000000..e90412e4c2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1c_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.C", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1d1_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1d1_co2_1990.gql new file mode 100644 index 0000000000..1a8bccc561 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_1d1_co2_1990.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_aviation), 100.0), + EMISSIONS(ipcc_crt_code, "1.D.1.a", co2, 1990) + ), + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_shipping), 100.0), + EMISSIONS(ipcc_crt_code, "1.D.1.b", co2, 1990) + ) + ), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_2_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_2_co2_1990.gql new file mode 100644 index 0000000000..ada0db3bfa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_2_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "2", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_3_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_3_co2_1990.gql new file mode 100644 index 0000000000..e9d78f445b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_3_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "3", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_4_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_4_co2_1990.gql new file mode 100644 index 0000000000..5d5ff33da0 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_4_co2_1990.gql @@ -0,0 +1,6 @@ +# Uses the query for ETM sector LULUCF, which exactly matches IPCC category 5 LULUCF. +# This is done since using the IPCC columns of the mapping file in a query could not distinguish +# between emissions and removals for CO2. + +- unit = MT +- query = Q(direct_emissions_lulucf_co2_1990) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_5_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_5_co2_1990.gql new file mode 100644 index 0000000000..81f58512b9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_5_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "5", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_ind_co2_co2_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_ind_co2_co2_1990.gql new file mode 100644 index 0000000000..28009f9ed5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/co2/direct_emissions_ipcc_ind_co2_co2_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "ind_CO2", co2, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg_1990.gql new file mode 100644 index 0000000000..2cd75817d2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.1", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg_1990.gql new file mode 100644 index 0000000000..ca8c1a0aa2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.2", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg_1990.gql new file mode 100644 index 0000000000..096fd765fc --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.3", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg_1990.gql new file mode 100644 index 0000000000..b8c3163963 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.a", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg_1990.gql new file mode 100644 index 0000000000..4b729a682f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.b", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg_1990.gql new file mode 100644 index 0000000000..89a324d7e5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.4.c", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg_1990.gql new file mode 100644 index 0000000000..3cf3f29bda --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.A.5", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg_1990.gql new file mode 100644 index 0000000000..f2ecb694d3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "1.B", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg_1990.gql new file mode 100644 index 0000000000..6109a9495a --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg_1990.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_aviation), 100.0), + EMISSIONS(ipcc_crt_code, "1.D.1.a", other_ghg, 1990) + ), + PRODUCT( + DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_shipping), 100.0), + EMISSIONS(ipcc_crt_code, "1.D.1.b", other_ghg, 1990) + ) + ), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg_1990.gql new file mode 100644 index 0000000000..de46c83b71 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "2", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg_1990.gql new file mode 100644 index 0000000000..d13e91a015 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "3", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg_1990.gql new file mode 100644 index 0000000000..a2ab094d87 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg_1990.gql @@ -0,0 +1,10 @@ +# No separate handling required for emissions/removals since per definition, other GHG in the +# LULUCF category can only be emissions. For the CO2 query direct_emissions_lulucf_co2_1990, +# removals and emissions are handled separately. + +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "4", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg_1990.gql new file mode 100644 index 0000000000..4436ad260c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + DIVIDE( + EMISSIONS(ipcc_crt_code_agg, "5", other_ghg, 1990), + THOUSANDS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg_1990.gql new file mode 100644 index 0000000000..115b0be3ea --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_co2_1990), + Q(direct_emissions_ipcc_1a1_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg_1990.gql new file mode 100644 index 0000000000..b695a5e479 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a2_co2_1990), + Q(direct_emissions_ipcc_1a2_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg_1990.gql new file mode 100644 index 0000000000..5be004238d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a3_co2_1990), + Q(direct_emissions_ipcc_1a3_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg_1990.gql new file mode 100644 index 0000000000..b8c7a517cc --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a4a_co2_1990), + Q(direct_emissions_ipcc_1a4a_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg_1990.gql new file mode 100644 index 0000000000..8d18fcab88 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a4b_co2_1990), + Q(direct_emissions_ipcc_1a4b_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg_1990.gql new file mode 100644 index 0000000000..1a22071d7e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a4c_co2_1990), + Q(direct_emissions_ipcc_1a4c_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg_1990.gql new file mode 100644 index 0000000000..c20d5d5181 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a5_co2_1990), + Q(direct_emissions_ipcc_1a5_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg_1990.gql new file mode 100644 index 0000000000..8fa34c55eb --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1b_co2_1990), + Q(direct_emissions_ipcc_1b_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg_1990.gql new file mode 100644 index 0000000000..bce69dabcd --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg_1990.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1c_co2_1990) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg_1990.gql new file mode 100644 index 0000000000..f88da7d529 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1d1_co2_1990), + Q(direct_emissions_ipcc_1d1_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg_1990.gql new file mode 100644 index 0000000000..766d94805e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_2_co2_1990), + Q(direct_emissions_ipcc_2_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg_1990.gql new file mode 100644 index 0000000000..df85312998 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_3_co2_1990), + Q(direct_emissions_ipcc_3_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg_1990.gql new file mode 100644 index 0000000000..caec70d181 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_4_co2_1990), + Q(direct_emissions_ipcc_4_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg_1990.gql new file mode 100644 index 0000000000..18bbee8e54 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg_1990.gql @@ -0,0 +1,6 @@ +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_5_co2_1990), + Q(direct_emissions_ipcc_5_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg_1990.gql new file mode 100644 index 0000000000..9e648e043e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg_1990.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_ind_co2_co2_1990) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..6e0a723a85 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,11 @@ +# Total CO2 emissions for 1990 excl. indirect emissions (ind_co2), LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_ind_co2_co2_1990)), + NEG(Q(direct_emissions_ipcc_4_co2_1990)), + NEG(Q(direct_emissions_ipcc_1d1_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..7d3383fe8b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions for 1990 incl. indirect emissions (ind_co2), excl. LULUCF (4) and +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_4_co2_1990)), + NEG(Q(direct_emissions_ipcc_1d1_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..d5f922d9b0 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,22 @@ +# Total CO2 emissions for 1990 incl. indirect emissions (ind_co2), LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_co2_1990), + Q(direct_emissions_ipcc_1a2_co2_1990), + Q(direct_emissions_ipcc_1a3_co2_1990), + Q(direct_emissions_ipcc_1a4a_co2_1990), + Q(direct_emissions_ipcc_1a4b_co2_1990), + Q(direct_emissions_ipcc_1a4c_co2_1990), + Q(direct_emissions_ipcc_1a5_co2_1990), + Q(direct_emissions_ipcc_1b_co2_1990), + Q(direct_emissions_ipcc_1c_co2_1990), + Q(direct_emissions_ipcc_1d1_co2_1990), + Q(direct_emissions_ipcc_2_co2_1990), + Q(direct_emissions_ipcc_3_co2_1990), + Q(direct_emissions_ipcc_4_co2_1990), + Q(direct_emissions_ipcc_5_co2_1990), + Q(direct_emissions_ipcc_ind_co2_co2_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..c569a828d9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions for 1990 incl. indirect emissions (ind_co2) and LULUCF (4), excl. +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_1d1_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..ef42658207 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions for 1990 incl. LULUCF (4), excl indirect emissions (ind_co2) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_ind_co2_co2_1990)), + NEG(Q(direct_emissions_ipcc_1d1_co2_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..af3b937016 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,11 @@ +# Total other GHG emissions for 1990 excl. indirect emissions (ind_co2), LULUCF (4) and +# international transport (1.D.1). +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_4_other_ghg_1990)), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..fa5e5331ba --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions for 1990 incl. indirect emissions (ind_co2), excl. LULUCF (4) and +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_4_other_ghg_1990)), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..abc68f81bf --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,23 @@ +# Total other GHG emissions for 1990 incl. indirect emissions (ind_co2), LULUCF (4) and +# international transport (1.D.1). +# Category 1.C (CO2 Transport and storage) only reports CO2 emissions and therefore no query exists +# for other GHG. Note that ind_co2 is not explicitly included here as the model only accounts for +# indirect CO2 emissions. + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_other_ghg_1990), + Q(direct_emissions_ipcc_1a2_other_ghg_1990), + Q(direct_emissions_ipcc_1a3_other_ghg_1990), + Q(direct_emissions_ipcc_1a4a_other_ghg_1990), + Q(direct_emissions_ipcc_1a4b_other_ghg_1990), + Q(direct_emissions_ipcc_1a4c_other_ghg_1990), + Q(direct_emissions_ipcc_1a5_other_ghg_1990), + Q(direct_emissions_ipcc_1b_other_ghg_1990), + Q(direct_emissions_ipcc_1d1_other_ghg_1990), + Q(direct_emissions_ipcc_2_other_ghg_1990), + Q(direct_emissions_ipcc_3_other_ghg_1990), + Q(direct_emissions_ipcc_4_other_ghg_1990), + Q(direct_emissions_ipcc_5_other_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..ccd4f8c7c3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions for 1990 incl. indirect emissions (ind_co2) and LULUCF (4), excl. +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..59f9bd7e56 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions incl. LULUCF (4), excl indirect emissions (ind_co2) and +# international transport (1.D.1) +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..56be07e22f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,11 @@ +# Total GHG emissions for 1990 excl. indirect emissions (ind_co2), LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_ind_co2_total_ghg_1990)), + NEG(Q(direct_emissions_ipcc_4_total_ghg_1990)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..cab035ce8a --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total GHG emissions 1990 incl. indirect emissions (ind_co2), excl. LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_4_total_ghg_1990)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql new file mode 100644 index 0000000000..6737d1138f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990.gql @@ -0,0 +1,22 @@ +# Total GHG emissions for 1990 incl. indirect emissions (ind_co2), LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_total_ghg_1990), + Q(direct_emissions_ipcc_1a2_total_ghg_1990), + Q(direct_emissions_ipcc_1a3_total_ghg_1990), + Q(direct_emissions_ipcc_1a4a_total_ghg_1990), + Q(direct_emissions_ipcc_1a4b_total_ghg_1990), + Q(direct_emissions_ipcc_1a4c_total_ghg_1990), + Q(direct_emissions_ipcc_1a5_total_ghg_1990), + Q(direct_emissions_ipcc_1b_total_ghg_1990), + Q(direct_emissions_ipcc_1c_total_ghg_1990), + Q(direct_emissions_ipcc_1d1_total_ghg_1990), + Q(direct_emissions_ipcc_2_total_ghg_1990), + Q(direct_emissions_ipcc_3_total_ghg_1990), + Q(direct_emissions_ipcc_4_total_ghg_1990), + Q(direct_emissions_ipcc_5_total_ghg_1990), + Q(direct_emissions_ipcc_ind_co2_total_ghg_1990) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql new file mode 100644 index 0000000000..3b23e61311 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers_1990.gql @@ -0,0 +1,9 @@ +# Total GHG emissions for 1990 incl. indirect emissions (ind_co2) and LULUCF (4), excl. +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql new file mode 100644 index 0000000000..a5c5b8c8ed --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/1990/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers_1990.gql @@ -0,0 +1,10 @@ +# Total GHG emissions for 1990 incl. LULUCF (4), excl indirect emissions (ind_co2) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990), + NEG(Q(direct_emissions_ipcc_ind_co2_total_ghg_1990)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg_1990)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a1_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a1_co2.gql new file mode 100644 index 0000000000..140551a31d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a1_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.1"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.1"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a2_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a2_co2.gql new file mode 100644 index 0000000000..dfde1a4438 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a2_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a3_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a3_co2.gql new file mode 100644 index 0000000000..2a9951f999 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a3_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.3"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.3"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4a_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4a_co2.gql new file mode 100644 index 0000000000..878915e01f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4a_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.a"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.a"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4b_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4b_co2.gql new file mode 100644 index 0000000000..6e3b2ce5bb --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4b_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.b"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.b"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4c_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4c_co2.gql new file mode 100644 index 0000000000..8485ab7b5d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a4c_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.c"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.c"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a5_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a5_co2.gql new file mode 100644 index 0000000000..75de11eaa3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1a5_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.5"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.5"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1b_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1b_co2.gql new file mode 100644 index 0000000000..9443ac26b2 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1b_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.B"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.B"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1c_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1c_co2.gql new file mode 100644 index 0000000000..40f10a17fa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1c_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.C"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.C"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1d1_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1d1_co2.gql new file mode 100644 index 0000000000..74bd9e4a7d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_1d1_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.D.1"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.D.1"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_2_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_2_co2.gql new file mode 100644 index 0000000000..eab0e4150c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_2_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_3_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_3_co2.gql new file mode 100644 index 0000000000..051a19454a --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_3_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "3"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "3"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_4_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_4_co2.gql new file mode 100644 index 0000000000..d43ffd0caa --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_4_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "4"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "4"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_5_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_5_co2.gql new file mode 100644 index 0000000000..caa5c5b949 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_5_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "5"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "5"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_ind_co2_co2.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_ind_co2_co2.gql new file mode 100644 index 0000000000..d364f3ec69 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/co2/direct_emissions_ipcc_ind_co2_co2.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "ind_CO2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ), + MV( + MSECTOR(ipcc_crt_code_agg, "ind_CO2"), + "direct_reporting_emissions_co2_production - direct_reporting_emissions_co2_capture" + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg.gql new file mode 100644 index 0000000000..c43077872b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a1_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.1"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.1"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg.gql new file mode 100644 index 0000000000..419d2db13c --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a2_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.2"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.2"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg.gql new file mode 100644 index 0000000000..7fe576a1e1 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a3_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.3"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.3"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg.gql new file mode 100644 index 0000000000..5e76d9e63f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4a_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.a"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.a"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg.gql new file mode 100644 index 0000000000..71d553e0e5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4b_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.b"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.b"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg.gql new file mode 100644 index 0000000000..59f1d56f72 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a4c_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.c"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.c"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg.gql new file mode 100644 index 0000000000..4305eaef41 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1a5_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.5"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.5"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg.gql new file mode 100644 index 0000000000..f60dae3fff --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1b_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.B"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.B"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg.gql new file mode 100644 index 0000000000..3d30f467af --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_1d1_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.D.1"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.D.1"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg.gql new file mode 100644 index 0000000000..cae1470b74 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_2_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "2"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "2"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg.gql new file mode 100644 index 0000000000..431d154a83 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_3_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "3"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "3"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg.gql new file mode 100644 index 0000000000..a3e5842bbc --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_4_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "4"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "4"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg.gql new file mode 100644 index 0000000000..2414f69f3d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/other_ghg/direct_emissions_ipcc_5_other_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "5"), + direct_reporting_emissions_other_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "5"), + direct_reporting_emissions_other_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg.gql new file mode 100644 index 0000000000..97f5022549 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a1_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.1"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.1"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg.gql new file mode 100644 index 0000000000..17455bdcd8 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a2_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.2"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.2"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg.gql new file mode 100644 index 0000000000..746ae5ce8b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a3_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.3"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.3"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg.gql new file mode 100644 index 0000000000..0eb54e557d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4a_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.a"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.a"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg.gql new file mode 100644 index 0000000000..d2f8e8e567 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4b_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.b"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.b"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg.gql new file mode 100644 index 0000000000..8a10724f22 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a4c_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.4.c"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.4.c"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg.gql new file mode 100644 index 0000000000..8e9e7bff3e --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1a5_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.A.5"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.A.5"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg.gql new file mode 100644 index 0000000000..1156d4241a --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1b_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.B"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.B"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg.gql new file mode 100644 index 0000000000..341b9bdf91 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1c_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.C"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.C"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg.gql new file mode 100644 index 0000000000..9b1b709c57 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_1d1_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "1.D.1"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "1.D.1"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg.gql new file mode 100644 index 0000000000..d14da9910b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_2_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "2"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "2"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg.gql new file mode 100644 index 0000000000..48726c4dbc --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_3_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "3"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "3"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg.gql new file mode 100644 index 0000000000..f584f50177 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_4_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "4"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "4"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg.gql new file mode 100644 index 0000000000..c2c9c5ffd8 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_5_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "5"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "5"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg.gql b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg.gql new file mode 100644 index 0000000000..16ec4463ec --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/per_category/total_ghg/direct_emissions_ipcc_ind_co2_total_ghg.gql @@ -0,0 +1,15 @@ +- unit = MT +- query = + DIVIDE( + SUM( + V( + SECTOR(ipcc_crt_code_agg, "ind_CO2"), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MSECTOR(ipcc_crt_code_agg, "ind_CO2"), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) \ No newline at end of file diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..fa767e5ce5 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,11 @@ +# Total CO2 emissions excl. indirect emissions (ind_co2), LULUCF (4) and international transport +# (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_ind_co2_co2)), + NEG(Q(direct_emissions_ipcc_4_co2)), + NEG(Q(direct_emissions_ipcc_1d1_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..c0fe2ba8e9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions incl. indirect emissions (ind_co2), excl. LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_4_co2)), + NEG(Q(direct_emissions_ipcc_1d1_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..6dccd2bd90 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,21 @@ +# Total emissions including all IPCC categories + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_co2), + Q(direct_emissions_ipcc_1a2_co2), + Q(direct_emissions_ipcc_1a3_co2), + Q(direct_emissions_ipcc_1a4a_co2), + Q(direct_emissions_ipcc_1a4b_co2), + Q(direct_emissions_ipcc_1a4c_co2), + Q(direct_emissions_ipcc_1a5_co2), + Q(direct_emissions_ipcc_1b_co2), + Q(direct_emissions_ipcc_1c_co2), + Q(direct_emissions_ipcc_1d1_co2), + Q(direct_emissions_ipcc_2_co2), + Q(direct_emissions_ipcc_3_co2), + Q(direct_emissions_ipcc_4_co2), + Q(direct_emissions_ipcc_5_co2), + Q(direct_emissions_ipcc_ind_co2_co2) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..94de80d323 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,9 @@ +# Total CO2 emissions incl. indirect emissions (ind_co2) and LULUCF (4), excl. international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_1d1_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..9300e783d7 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/co2/direct_emissions_ipcc_co2_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,10 @@ +# Total CO2 emissions incl. LULUCF (4), excl indirect emissions (ind_co2) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_ind_co2_co2)), + NEG(Q(direct_emissions_ipcc_1d1_co2)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..cd73c56290 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,11 @@ +# Total other GHG emissions excl. indirect emissions (ind_co2), LULUCF (4) and international +# transport (1.D.1) +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_4_other_ghg)), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..c9b9e9021b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions incl. indirect emissions (ind_co2), excl. LULUCF (4) and +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_4_other_ghg)), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..73c9ce800d --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,23 @@ +# Total other GHG emissions incl. indirect emissions (ind_co2), LULUCF (4) and international +# transport(1.D.1). +# Category 1.C (CO2 Transport and storage) only reports CO2 emissions and +# therefore no query exists for other GHG. +# Note that ind_co2 is not explicitly included here as indirect emissions are only modelled for CO2. + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_other_ghg), + Q(direct_emissions_ipcc_1a2_other_ghg), + Q(direct_emissions_ipcc_1a3_other_ghg), + Q(direct_emissions_ipcc_1a4a_other_ghg), + Q(direct_emissions_ipcc_1a4b_other_ghg), + Q(direct_emissions_ipcc_1a4c_other_ghg), + Q(direct_emissions_ipcc_1a5_other_ghg), + Q(direct_emissions_ipcc_1b_other_ghg), + Q(direct_emissions_ipcc_1d1_other_ghg), + Q(direct_emissions_ipcc_2_other_ghg), + Q(direct_emissions_ipcc_3_other_ghg), + Q(direct_emissions_ipcc_4_other_ghg), + Q(direct_emissions_ipcc_5_other_ghg) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..20583bf8e1 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,9 @@ +# Total other GHG emissions incl. indirect emissions (ind_co2) and LULUCF (4), excl. +# international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..12f7e37d2f --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/other_ghg/direct_emissions_ipcc_other_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,10 @@ +# Total other GHG emissions incl. LULUCF (4), excl indirect emissions (ind_co2) and +# international transport (1.D.1) +# Only indirect CO2 emissions are modelled, therefore there is no query for indirect other GHG + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_1d1_other_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..e0932a9da3 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,11 @@ +# Total GHG emissions excl. indirect emissions (ind_co2), LULUCF (4) and international transport +# (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_ind_co2_total_ghg)), + NEG(Q(direct_emissions_ipcc_4_total_ghg)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql new file mode 100644 index 0000000000..defb6976d9 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_excl_lulucf_bunkers.gql @@ -0,0 +1,10 @@ +# Total GHG emissions incl. indirect emissions (ind_co2), excl. LULUCF (4) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_4_total_ghg)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..7af936dd6b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,22 @@ +# Total GHG emissions incl. indirect emissions (ind_co2), LULUCF (4) and international transport +# (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_1a1_total_ghg), + Q(direct_emissions_ipcc_1a2_total_ghg), + Q(direct_emissions_ipcc_1a3_total_ghg), + Q(direct_emissions_ipcc_1a4a_total_ghg), + Q(direct_emissions_ipcc_1a4b_total_ghg), + Q(direct_emissions_ipcc_1a4c_total_ghg), + Q(direct_emissions_ipcc_1a5_total_ghg), + Q(direct_emissions_ipcc_1b_total_ghg), + Q(direct_emissions_ipcc_1c_total_ghg), + Q(direct_emissions_ipcc_1d1_total_ghg), + Q(direct_emissions_ipcc_2_total_ghg), + Q(direct_emissions_ipcc_3_total_ghg), + Q(direct_emissions_ipcc_4_total_ghg), + Q(direct_emissions_ipcc_5_total_ghg), + Q(direct_emissions_ipcc_ind_co2_total_ghg) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql new file mode 100644 index 0000000000..af12770c21 --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_excl_bunkers.gql @@ -0,0 +1,9 @@ +# Total GHG emissions incl. indirect emissions (ind_co2) and LULUCF (4), excl. international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg)) + ) diff --git a/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql new file mode 100644 index 0000000000..0cf8608a7b --- /dev/null +++ b/gqueries/general/emissions/direct_emissions/ipcc/totals/total_ghg/direct_emissions_ipcc_total_ghg_incl_lulucf_excl_indirect_emissions_bunkers.gql @@ -0,0 +1,10 @@ +# Total GHG emissions incl. LULUCF (4), excl indirect emissions (ind_co2) and international +# transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers), + NEG(Q(direct_emissions_ipcc_ind_co2_total_ghg)), + NEG(Q(direct_emissions_ipcc_1d1_total_ghg)) + ) diff --git a/gqueries/general/co2/average_co2_emissions_of_imported_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/average_co2_emissions_of_imported_electricity.gql similarity index 100% rename from gqueries/general/co2/average_co2_emissions_of_imported_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/average_co2_emissions_of_imported_electricity.gql diff --git a/gqueries/general/co2/average_co2_emissions_of_produced_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/average_co2_emissions_of_produced_electricity.gql similarity index 100% rename from gqueries/general/co2/average_co2_emissions_of_produced_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/average_co2_emissions_of_produced_electricity.gql diff --git a/gqueries/general/co2/co2_emissions_1990.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_1990.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_1990.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_1990.gql diff --git a/gqueries/general/co2/co2_emissions_bunkers_1990.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_bunkers_1990.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_bunkers_1990.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_bunkers_1990.gql diff --git a/gqueries/general/co2/co2_emissions_of_imported_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_imported_electricity.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_of_imported_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_imported_electricity.gql diff --git a/gqueries/general/co2/co2_emissions_of_produced_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_produced_electricity.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_of_produced_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_produced_electricity.gql diff --git a/gqueries/general/co2/co2_emissions_of_used_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_used_electricity.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_of_used_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_of_used_electricity.gql diff --git a/gqueries/general/co2/co2_emissions_produced_abroad_consumed_local.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_produced_abroad_consumed_local.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_produced_abroad_consumed_local.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_produced_abroad_consumed_local.gql diff --git a/gqueries/general/co2/co2_emissions_produced_local_consumed_abroad.gql b/gqueries/general/emissions/primary_emissions/co2/co2_emissions_produced_local_consumed_abroad.gql similarity index 100% rename from gqueries/general/co2/co2_emissions_produced_local_consumed_abroad.gql rename to gqueries/general/emissions/primary_emissions/co2/co2_emissions_produced_local_consumed_abroad.gql diff --git a/gqueries/general/co2/delayed_emissions_co2.gql b/gqueries/general/emissions/primary_emissions/co2/delayed_emissions_co2.gql similarity index 100% rename from gqueries/general/co2/delayed_emissions_co2.gql rename to gqueries/general/emissions/primary_emissions/co2/delayed_emissions_co2.gql diff --git a/gqueries/general/co2/delayed_emissions_emitted_co2.gql b/gqueries/general/emissions/primary_emissions/co2/delayed_emissions_emitted_co2.gql similarity index 100% rename from gqueries/general/co2/delayed_emissions_emitted_co2.gql rename to gqueries/general/emissions/primary_emissions/co2/delayed_emissions_emitted_co2.gql diff --git a/gqueries/general/co2/delayed_emissions_indefinitely_co2.gql b/gqueries/general/emissions/primary_emissions/co2/delayed_emissions_indefinitely_co2.gql similarity index 100% rename from gqueries/general/co2/delayed_emissions_indefinitely_co2.gql rename to gqueries/general/emissions/primary_emissions/co2/delayed_emissions_indefinitely_co2.gql diff --git a/gqueries/general/co2/industry/captured_co2_emissions_in_industry.gql b/gqueries/general/emissions/primary_emissions/co2/industry/captured_co2_emissions_in_industry.gql similarity index 100% rename from gqueries/general/co2/industry/captured_co2_emissions_in_industry.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/captured_co2_emissions_in_industry.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_ammonia_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_ammonia_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_ammonia_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_ammonia_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_biomass_products_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_biomass_products_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_biomass_products_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_biomass_products_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_coal_and_coal_products_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_coal_and_coal_products_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_coal_and_coal_products_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_coal_and_coal_products_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_electricity_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_electricity_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_electricity_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_electricity_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_hydrogen_carriers_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_hydrogen_carriers_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_hydrogen_carriers_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_hydrogen_carriers_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_methanol_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_methanol_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_methanol_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_methanol_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_natural_gas_and_derivatives_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_natural_gas_and_derivatives_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_natural_gas_and_derivatives_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_natural_gas_and_derivatives_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_oil_and_oil_products_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_oil_and_oil_products_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_oil_and_oil_products_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_oil_and_oil_products_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry/primary_co2_emissions_of_steam_hot_water_in_industry_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_steam_hot_water_in_industry_energetic.gql similarity index 100% rename from gqueries/general/co2/industry/primary_co2_emissions_of_steam_hot_water_in_industry_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/industry/primary_co2_emissions_of_steam_hot_water_in_industry_energetic.gql diff --git a/gqueries/general/co2/industry_chemical_fertilizers_non_energetic_co2.gql b/gqueries/general/emissions/primary_emissions/co2/industry_chemical_fertilizers_non_energetic_co2.gql similarity index 100% rename from gqueries/general/co2/industry_chemical_fertilizers_non_energetic_co2.gql rename to gqueries/general/emissions/primary_emissions/co2/industry_chemical_fertilizers_non_energetic_co2.gql diff --git a/gqueries/general/co2/industry_chemical_non_energetic_co2_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/industry_chemical_non_energetic_co2_emissions.gql similarity index 100% rename from gqueries/general/co2/industry_chemical_non_energetic_co2_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/industry_chemical_non_energetic_co2_emissions.gql diff --git a/gqueries/general/co2/industry_chemical_other_non_energetic_co2.gql b/gqueries/general/emissions/primary_emissions/co2/industry_chemical_other_non_energetic_co2.gql similarity index 100% rename from gqueries/general/co2/industry_chemical_other_non_energetic_co2.gql rename to gqueries/general/emissions/primary_emissions/co2/industry_chemical_other_non_energetic_co2.gql diff --git a/gqueries/general/co2/initial_co2_emissions_of_imported_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/initial_co2_emissions_of_imported_electricity.gql similarity index 100% rename from gqueries/general/co2/initial_co2_emissions_of_imported_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/initial_co2_emissions_of_imported_electricity.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_agriculture.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_agriculture.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_agriculture.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_agriculture.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_buildings.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_buildings.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_buildings.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_buildings.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_bunkers.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_bunkers.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_bunkers.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_bunkers.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_delayed_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_delayed_emissions.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_delayed_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_delayed_emissions.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_energy.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_energy.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_energy.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_energy.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_households.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_households.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_households.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_households.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_industry.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_industry.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_industry.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_industry.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_non_energetic.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_non_energetic.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_non_energetic.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_non_energetic.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_other.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_other.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_other.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_other.gql diff --git a/gqueries/general/co2/primary_co2_emission_of_transport.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_transport.gql similarity index 100% rename from gqueries/general/co2/primary_co2_emission_of_transport.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_emission_of_transport.gql diff --git a/gqueries/general/co2/primary_co2_of_coal_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_coal_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_coal_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_coal_and_derivatives.gql diff --git a/gqueries/general/co2/primary_co2_of_imported_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_imported_electricity.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_imported_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_imported_electricity.gql diff --git a/gqueries/general/co2/primary_co2_of_imported_hydrogen.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_imported_hydrogen.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_imported_hydrogen.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_imported_hydrogen.gql diff --git a/gqueries/general/co2/primary_co2_of_natural_gas_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_natural_gas_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_natural_gas_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_natural_gas_and_derivatives.gql diff --git a/gqueries/general/co2/primary_co2_of_natural_gas_and_derivatives_in_transport.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_natural_gas_and_derivatives_in_transport.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_natural_gas_and_derivatives_in_transport.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_natural_gas_and_derivatives_in_transport.gql diff --git a/gqueries/general/co2/primary_co2_of_non_energetic_and_delayed_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_non_energetic_and_delayed_emissions.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_non_energetic_and_delayed_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_non_energetic_and_delayed_emissions.gql diff --git a/gqueries/general/co2/primary_co2_of_oil_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_oil_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_oil_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_oil_and_derivatives.gql diff --git a/gqueries/general/co2/primary_co2_of_total.gql b/gqueries/general/emissions/primary_emissions/co2/primary_co2_of_total.gql similarity index 100% rename from gqueries/general/co2/primary_co2_of_total.gql rename to gqueries/general/emissions/primary_emissions/co2/primary_co2_of_total.gql diff --git a/gqueries/general/co2/relative_primary_co2_of_coal_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_coal_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/relative_primary_co2_of_coal_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_coal_and_derivatives.gql diff --git a/gqueries/general/co2/relative_primary_co2_of_imported_electricity.gql b/gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_imported_electricity.gql similarity index 100% rename from gqueries/general/co2/relative_primary_co2_of_imported_electricity.gql rename to gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_imported_electricity.gql diff --git a/gqueries/general/co2/relative_primary_co2_of_imported_hydrogen.gql b/gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_imported_hydrogen.gql similarity index 100% rename from gqueries/general/co2/relative_primary_co2_of_imported_hydrogen.gql rename to gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_imported_hydrogen.gql diff --git a/gqueries/general/co2/relative_primary_co2_of_natural_gas_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_natural_gas_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/relative_primary_co2_of_natural_gas_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_natural_gas_and_derivatives.gql diff --git a/gqueries/general/co2/relative_primary_co2_of_oil_and_derivatives.gql b/gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_oil_and_derivatives.gql similarity index 100% rename from gqueries/general/co2/relative_primary_co2_of_oil_and_derivatives.gql rename to gqueries/general/emissions/primary_emissions/co2/relative_primary_co2_of_oil_and_derivatives.gql diff --git a/gqueries/general/co2/total_co2_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/total_co2_emissions.gql similarity index 100% rename from gqueries/general/co2/total_co2_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/total_co2_emissions.gql diff --git a/gqueries/general/co2/total_local_co2_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/total_local_co2_emissions.gql similarity index 100% rename from gqueries/general/co2/total_local_co2_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/total_local_co2_emissions.gql diff --git a/gqueries/general/co2/total_net_co2_emissions.gql b/gqueries/general/emissions/primary_emissions/co2/total_net_co2_emissions.gql similarity index 100% rename from gqueries/general/co2/total_net_co2_emissions.gql rename to gqueries/general/emissions/primary_emissions/co2/total_net_co2_emissions.gql diff --git a/gqueries/general/emissions/demand/emissions_molecules_export.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_molecules_export.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_molecules_export.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_molecules_export.gql diff --git a/gqueries/general/emissions/demand/emissions_molecules_offshore_sequestration.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_molecules_offshore_sequestration.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_molecules_offshore_sequestration.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_molecules_offshore_sequestration.gql diff --git a/gqueries/general/emissions/demand/emissions_molecules_other_utilisation_delayed_emitted.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_molecules_other_utilisation_delayed_emitted.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_molecules_other_utilisation_delayed_emitted.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_molecules_other_utilisation_delayed_emitted.gql diff --git a/gqueries/general/emissions/demand/emissions_molecules_other_utilisation_delayed_indefinitely.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_molecules_other_utilisation_delayed_indefinitely.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_molecules_other_utilisation_delayed_indefinitely.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_molecules_other_utilisation_delayed_indefinitely.gql diff --git a/gqueries/general/emissions/demand/emissions_production_synthetic_methanol_emitted.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_production_synthetic_methanol_emitted.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_production_synthetic_methanol_emitted.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_production_synthetic_methanol_emitted.gql diff --git a/gqueries/general/emissions/demand/emissions_production_synthetic_methanol_utilised.gql b/gqueries/general/emissions/primary_emissions/demand/emissions_production_synthetic_methanol_utilised.gql similarity index 100% rename from gqueries/general/emissions/demand/emissions_production_synthetic_methanol_utilised.gql rename to gqueries/general/emissions/primary_emissions/demand/emissions_production_synthetic_methanol_utilised.gql diff --git a/gqueries/general/emissions/emissions_delayed_emitted_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_delayed_emitted_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_delayed_emitted_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_delayed_emitted_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_agriculture_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_agriculture_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_agriculture_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_agriculture_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_agriculture_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_agriculture_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_agriculture_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_agriculture_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_all_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_all_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_all_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_all_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_all_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_all_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_all_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_all_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_buildings_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_buildings_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_buildings_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_buildings_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_energy_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_energy_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_energy_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_energy_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_households_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_households_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_households_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_households_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_industry_chemical_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_industry_chemical_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_industry_chemical_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_industry_chemical_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_industry_energy_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_industry_energy_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_industry_energy_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_industry_energy_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_industry_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_industry_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_industry_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_industry_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_energetic_other_industry_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_other_industry_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_other_industry_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_other_industry_co2.gql diff --git a/gqueries/general/emissions/emissions_energetic_transport_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_energetic_transport_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_energetic_transport_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_energetic_transport_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_indirect_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_indirect_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_indirect_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_indirect_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_fermentation_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_fermentation_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_fermentation_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_fermentation_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_manure_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_manure_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_manure_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_manure_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_manure_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_manure_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_manure_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_manure_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_other_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_other_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_other_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_other_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_soil_cultivation_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_soil_cultivation_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_soil_cultivation_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_soil_cultivation_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_agriculture_soil_cultivation_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_soil_cultivation_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_agriculture_soil_cultivation_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_agriculture_soil_cultivation_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_all_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_all_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_all_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_all_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_all_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_all_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_all_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_all_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_industry_chemical_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_chemical_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_industry_chemical_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_chemical_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_industry_chemical_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_chemical_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_industry_chemical_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_chemical_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_industry_waste_management_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_waste_management_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_industry_waste_management_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_waste_management_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_industry_waste_management_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_waste_management_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_industry_waste_management_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_industry_waste_management_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_other_industry_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_other_industry_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_other_industry_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_other_industry_co2.gql diff --git a/gqueries/general/emissions/emissions_non_energetic_other_industry_other_ghg.gql b/gqueries/general/emissions/primary_emissions/emissions_non_energetic_other_industry_other_ghg.gql similarity index 100% rename from gqueries/general/emissions/emissions_non_energetic_other_industry_other_ghg.gql rename to gqueries/general/emissions/primary_emissions/emissions_non_energetic_other_industry_other_ghg.gql diff --git a/gqueries/general/emissions/emissions_overview_energetic_agriculture_co2.gql b/gqueries/general/emissions/primary_emissions/emissions_overview_energetic_agriculture_co2.gql similarity index 100% rename from gqueries/general/emissions/emissions_overview_energetic_agriculture_co2.gql rename to gqueries/general/emissions/primary_emissions/emissions_overview_energetic_agriculture_co2.gql diff --git a/gqueries/general/emissions/emissions_total.gql b/gqueries/general/emissions/primary_emissions/emissions_total.gql similarity index 100% rename from gqueries/general/emissions/emissions_total.gql rename to gqueries/general/emissions/primary_emissions/emissions_total.gql diff --git a/gqueries/general/emissions/supply/DAC/emissions_captured_direct_air_capture_co2.gql b/gqueries/general/emissions/primary_emissions/supply/DAC/emissions_captured_direct_air_capture_co2.gql similarity index 100% rename from gqueries/general/emissions/supply/DAC/emissions_captured_direct_air_capture_co2.gql rename to gqueries/general/emissions/primary_emissions/supply/DAC/emissions_captured_direct_air_capture_co2.gql diff --git a/gqueries/general/emissions/supply/emissions_captured_biogenic_total.gql b/gqueries/general/emissions/primary_emissions/supply/emissions_captured_biogenic_total.gql similarity index 100% rename from gqueries/general/emissions/supply/emissions_captured_biogenic_total.gql rename to gqueries/general/emissions/primary_emissions/supply/emissions_captured_biogenic_total.gql diff --git a/gqueries/general/emissions/supply/emissions_captured_total.gql b/gqueries/general/emissions/primary_emissions/supply/emissions_captured_total.gql similarity index 100% rename from gqueries/general/emissions/supply/emissions_captured_total.gql rename to gqueries/general/emissions/primary_emissions/supply/emissions_captured_total.gql diff --git a/gqueries/general/emissions/supply/emissions_captured_total_excluding_import.gql b/gqueries/general/emissions/primary_emissions/supply/emissions_captured_total_excluding_import.gql similarity index 100% rename from gqueries/general/emissions/supply/emissions_captured_total_excluding_import.gql rename to gqueries/general/emissions/primary_emissions/supply/emissions_captured_total_excluding_import.gql diff --git a/gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_autothermal_reformer.gql b/gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_autothermal_reformer.gql similarity index 100% rename from gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_autothermal_reformer.gql rename to gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_autothermal_reformer.gql diff --git a/gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_biomass_gasification.gql b/gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_biomass_gasification.gql similarity index 100% rename from gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_biomass_gasification.gql rename to gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_biomass_gasification.gql diff --git a/gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_steam_methane_reformer.gql b/gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_steam_methane_reformer.gql similarity index 100% rename from gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_steam_methane_reformer.gql rename to gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_steam_methane_reformer.gql diff --git a/gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_total.gql b/gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_total.gql similarity index 100% rename from gqueries/general/emissions/supply/hydrogen/emissions_captured_hydrogen_total.gql rename to gqueries/general/emissions/primary_emissions/supply/hydrogen/emissions_captured_hydrogen_total.gql diff --git a/gqueries/general/emissions/supply/import/emissions_captured_import_co2_backup.gql b/gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_backup.gql similarity index 100% rename from gqueries/general/emissions/supply/import/emissions_captured_import_co2_backup.gql rename to gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_backup.gql diff --git a/gqueries/general/emissions/supply/import/emissions_captured_import_co2_baseload.gql b/gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_baseload.gql similarity index 100% rename from gqueries/general/emissions/supply/import/emissions_captured_import_co2_baseload.gql rename to gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_baseload.gql diff --git a/gqueries/general/emissions/supply/import/emissions_captured_import_co2_total.gql b/gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_total.gql similarity index 100% rename from gqueries/general/emissions/supply/import/emissions_captured_import_co2_total.gql rename to gqueries/general/emissions/primary_emissions/supply/import/emissions_captured_import_co2_total.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_fertilizers.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_fertilizers.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_fertilizers.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_fertilizers.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_other.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_other.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_other.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_other.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_refineries.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_refineries.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_chemicals_refineries.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_chemicals_refineries.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_external_coupling.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_external_coupling.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_external_coupling.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_external_coupling.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_other.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_other.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_other_food.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other_food.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_other_food.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other_food.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_other_paper.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other_paper.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_other_paper.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_other_paper.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_steel.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_steel.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_steel.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_steel.gql diff --git a/gqueries/general/emissions/supply/industry/emissions_captured_industry_total.gql b/gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_total.gql similarity index 100% rename from gqueries/general/emissions/supply/industry/emissions_captured_industry_total.gql rename to gqueries/general/emissions/primary_emissions/supply/industry/emissions_captured_industry_total.gql diff --git a/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_ht_steam_hot_water_output_curve.gql b/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_ht_steam_hot_water_output_curve.gql new file mode 100644 index 0000000000..95ec77bbf8 --- /dev/null +++ b/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_ht_steam_hot_water_output_curve.gql @@ -0,0 +1,2 @@ +- unit = curve +- query = V(energy_chp_combined_cycle_ht_hydrogen, steam_hot_water_output_curve) diff --git a/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_mt_steam_hot_water_output_curve.gql b/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_mt_steam_hot_water_output_curve.gql new file mode 100644 index 0000000000..9152ce9069 --- /dev/null +++ b/gqueries/general/heat/heat_network/production_curves/energy_chp_combined_cycle_hydrogen_mt_steam_hot_water_output_curve.gql @@ -0,0 +1,2 @@ +- unit = curve +- query = V(energy_chp_combined_cycle_mt_hydrogen, steam_hot_water_output_curve) diff --git a/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_electricity.gql b/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_electricity.gql new file mode 100644 index 0000000000..e3dcf95a16 --- /dev/null +++ b/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_electricity.gql @@ -0,0 +1,8 @@ +# Output of electricity from energy_chp_combined_cycle_ht_hydrogen + +- query = + DIVIDE( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity), + BILLIONS + ) +- unit = PJ diff --git a/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_steam_hot_water.gql b/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_steam_hot_water.gql new file mode 100644 index 0000000000..9ff6b747da --- /dev/null +++ b/gqueries/general/heat/heat_production_per_technology/ht/energy_chp_combined_cycle_ht_hydrogen_output_of_steam_hot_water.gql @@ -0,0 +1,8 @@ +# Output of steam_hot_water from energy_chp_combined_cycle_ht_hydrogen + +- query = + DIVIDE( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_steam_hot_water), + BILLIONS + ) +- unit = PJ diff --git a/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_electricity.gql b/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_electricity.gql new file mode 100644 index 0000000000..c43f63de54 --- /dev/null +++ b/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_electricity.gql @@ -0,0 +1,8 @@ +# Output of electricity from energy_chp_combined_cycle_mt_hydrogen + +- query = + DIVIDE( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity), + BILLIONS + ) +- unit = PJ diff --git a/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_steam_hot_water.gql b/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_steam_hot_water.gql new file mode 100644 index 0000000000..407992afa3 --- /dev/null +++ b/gqueries/general/heat/heat_production_per_technology/mt/energy_chp_combined_cycle_mt_hydrogen_output_of_steam_hot_water.gql @@ -0,0 +1,8 @@ +# Output of steam_hot_water from energy_chp_combined_cycle_mt_hydrogen + +- query = + DIVIDE( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_steam_hot_water), + BILLIONS + ) +- unit = PJ diff --git a/gqueries/general/hydrogen/demand_curve/energy_chp_combined_cycle_hydrogen_hydrogen_input_curve.gql b/gqueries/general/hydrogen/demand_curve/energy_chp_combined_cycle_hydrogen_hydrogen_input_curve.gql new file mode 100644 index 0000000000..0154579cac --- /dev/null +++ b/gqueries/general/hydrogen/demand_curve/energy_chp_combined_cycle_hydrogen_hydrogen_input_curve.gql @@ -0,0 +1,6 @@ +- query = + SUM_CURVES( + V(energy_chp_combined_cycle_ht_hydrogen, hydrogen_input_curve), + V(energy_chp_combined_cycle_mt_hydrogen, hydrogen_input_curve) + ) +- unit = curve diff --git a/gqueries/general/number_of_units/number_of_demolished_residences.gql b/gqueries/general/number_of_units/number_of_demolished_residences.gql new file mode 100644 index 0000000000..2d12eb83e9 --- /dev/null +++ b/gqueries/general/number_of_units/number_of_demolished_residences.gql @@ -0,0 +1,9 @@ +- query = + SUM( + INPUT_VALUE(households_demolished_before_1945), + INPUT_VALUE(households_demolished_1945_1964), + INPUT_VALUE(households_demolished_1965_1984), + INPUT_VALUE(households_demolished_1985_2004), + INPUT_VALUE(households_demolished_2005_present) + ) +- unit = # diff --git a/gqueries/general/useful_demand/buildings/buildings_future/useful_demand_buildings_future_per_building.gql b/gqueries/general/useful_demand/buildings/buildings_future/useful_demand_buildings_future_per_building.gql new file mode 100644 index 0000000000..9a1ccb71b2 --- /dev/null +++ b/gqueries/general/useful_demand/buildings/buildings_future/useful_demand_buildings_future_per_building.gql @@ -0,0 +1,10 @@ +# The unit GJ/# means Gigajoule per residence equivalent (woningequivalenten) in this case. +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_buildings_future), + Q(number_of_buildings_future) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/buildings/buildings_present/useful_demand_buildings_present_per_building.gql b/gqueries/general/useful_demand/buildings/buildings_present/useful_demand_buildings_present_per_building.gql new file mode 100644 index 0000000000..af560269b7 --- /dev/null +++ b/gqueries/general/useful_demand/buildings/buildings_present/useful_demand_buildings_present_per_building.gql @@ -0,0 +1,10 @@ +# The unit GJ/# means Gigajoule per residence equivalent (woningequivalenten) in this case. +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_buildings_present), + Q(number_of_buildings_present) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1945_1964.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1945_1964.gql new file mode 100644 index 0000000000..0fccb9cf0a --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1945_1964.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_1945_1964), + Q(number_of_apartments_1945_1964) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1965_1984.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1965_1984.gql new file mode 100644 index 0000000000..0a76093a28 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1965_1984.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_1965_1984), + Q(number_of_apartments_1965_1984) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1985_2004.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1985_2004.gql new file mode 100644 index 0000000000..96e4cea019 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_1985_2004.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_1985_2004), + Q(number_of_apartments_1985_2004) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_2005_present.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_2005_present.gql new file mode 100644 index 0000000000..6cdff74486 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_2005_present.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_2005_present), + Q(number_of_apartments_2005_present) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_before_1945.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_before_1945.gql new file mode 100644 index 0000000000..a340642608 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_before_1945.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_before_1945), + Q(number_of_apartments_before_1945) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_future.gql b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_future.gql new file mode 100644 index 0000000000..1afd48c1c9 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/apartments/useful_heat_demand_per_apartment_future.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_apartments_future), + Q(number_of_apartments_future) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1945_1964.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1945_1964.gql new file mode 100644 index 0000000000..e57a12f868 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1945_1964.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_1945_1964), + Q(number_of_detached_houses_1945_1964) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1965_1984.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1965_1984.gql new file mode 100644 index 0000000000..3c64e59d30 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1965_1984.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_1965_1984), + Q(number_of_detached_houses_1965_1984) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1985_2004.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1985_2004.gql new file mode 100644 index 0000000000..2f61b3a43b --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_1985_2004.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_1985_2004), + Q(number_of_detached_houses_1985_2004) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_2005_present.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_2005_present.gql new file mode 100644 index 0000000000..cbc6c3b895 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_2005_present.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_2005_present), + Q(number_of_detached_houses_2005_present) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_before_1945.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_before_1945.gql new file mode 100644 index 0000000000..f7958ec70a --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_before_1945.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_before_1945), + Q(number_of_detached_houses_before_1945) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_future.gql b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_future.gql new file mode 100644 index 0000000000..d22e4921f9 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/detached_houses/useful_heat_demand_per_detached_house_future.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_detached_houses_future), + Q(number_of_detached_houses_future) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1945_1964.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1945_1964.gql new file mode 100644 index 0000000000..bf6fc38bf6 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1945_1964.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_1945_1964), + Q(number_of_semi_detached_houses_1945_1964) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1965_1984.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1965_1984.gql new file mode 100644 index 0000000000..b2d67fe044 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1965_1984.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_1965_1984), + Q(number_of_semi_detached_houses_1965_1984) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1985_2004.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1985_2004.gql new file mode 100644 index 0000000000..25f0759830 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_1985_2004.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_1985_2004), + Q(number_of_semi_detached_houses_1985_2004) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_2005_present.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_2005_present.gql new file mode 100644 index 0000000000..24da4d9cc6 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_2005_present.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_2005_present), + Q(number_of_semi_detached_houses_2005_present) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_before_1945.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_before_1945.gql new file mode 100644 index 0000000000..eec4dd5d81 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_before_1945.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_before_1945), + Q(number_of_semi_detached_houses_before_1945) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_future.gql b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_future.gql new file mode 100644 index 0000000000..ff966a5295 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/semi_detached_houses/useful_heat_demand_per_semi_detached_house_future.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_semi_detached_houses_future), + Q(number_of_semi_detached_houses_future) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1945_1964.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1945_1964.gql new file mode 100644 index 0000000000..9e7efb6e8a --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1945_1964.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_1945_1964), + Q(number_of_terraced_houses_1945_1964) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1965_1984.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1965_1984.gql new file mode 100644 index 0000000000..61535dbbb0 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1965_1984.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_1965_1984), + Q(number_of_terraced_houses_1965_1984) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1985_2004.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1985_2004.gql new file mode 100644 index 0000000000..f50515ef78 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_1985_2004.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_1985_2004), + Q(number_of_terraced_houses_1985_2004) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_2005_present.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_2005_present.gql new file mode 100644 index 0000000000..d2fe1c8638 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_2005_present.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_2005_present), + Q(number_of_terraced_houses_2005_present) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_before_1945.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_before_1945.gql new file mode 100644 index 0000000000..0799dff869 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_before_1945.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_before_1945), + Q(number_of_terraced_houses_before_1945) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_future.gql b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_future.gql new file mode 100644 index 0000000000..0abe1c8a18 --- /dev/null +++ b/gqueries/general/useful_demand/households/per_household/terraced_houses/useful_heat_demand_per_terraced_house_future.gql @@ -0,0 +1,9 @@ +- query = + PRODUCT( + DIVIDE( + Q(useful_demand_terraced_houses_future), + Q(number_of_terraced_houses_future) + ), + MILLIONS + ) +- unit = GJ/# diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1945_1964.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1945_1964.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1945_1964.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1945_1964.gql diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1965_1984.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1965_1984.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1965_1984.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1965_1984.gql diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1985_2004.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1985_2004.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_1985_2004.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_1985_2004.gql diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_2005_present.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_2005_present.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_2005_present.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_2005_present.gql diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_before_1945.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_before_1945.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_before_1945.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_before_1945.gql diff --git a/gqueries/general/useful_demand/households/apartments/useful_demand_apartments_future.gql b/gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_future.gql similarity index 100% rename from gqueries/general/useful_demand/households/apartments/useful_demand_apartments_future.gql rename to gqueries/general/useful_demand/households/totals/apartments/useful_demand_apartments_future.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1945_1964.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1945_1964.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1945_1964.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1945_1964.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1965_1984.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1965_1984.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1965_1984.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1965_1984.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1985_2004.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1985_2004.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_1985_2004.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_1985_2004.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_2005_present.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_2005_present.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_2005_present.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_2005_present.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_before_1945.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_before_1945.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_before_1945.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_before_1945.gql diff --git a/gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_future.gql b/gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_future.gql similarity index 100% rename from gqueries/general/useful_demand/households/detached_houses/useful_demand_detached_houses_future.gql rename to gqueries/general/useful_demand/households/totals/detached_houses/useful_demand_detached_houses_future.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1945_1964.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1945_1964.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1945_1964.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1945_1964.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1965_1984.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1965_1984.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1965_1984.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1965_1984.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1985_2004.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1985_2004.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_1985_2004.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_1985_2004.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_2005_present.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_2005_present.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_2005_present.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_2005_present.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_before_1945.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_before_1945.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_before_1945.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_before_1945.gql diff --git a/gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_future.gql b/gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_future.gql similarity index 100% rename from gqueries/general/useful_demand/households/semi_detached_houses/useful_demand_semi_detached_houses_future.gql rename to gqueries/general/useful_demand/households/totals/semi_detached_houses/useful_demand_semi_detached_houses_future.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1945_1964.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1945_1964.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1945_1964.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1945_1964.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1965_1984.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1965_1984.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1965_1984.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1965_1984.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1985_2004.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1985_2004.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_1985_2004.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_1985_2004.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_2005_present.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_2005_present.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_2005_present.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_2005_present.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_before_1945.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_before_1945.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_before_1945.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_before_1945.gql diff --git a/gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_future.gql b/gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_future.gql similarity index 100% rename from gqueries/general/useful_demand/households/terraced_houses/useful_demand_terraced_houses_future.gql rename to gqueries/general/useful_demand/households/totals/terraced_houses/useful_demand_terraced_houses_future.gql diff --git a/gqueries/general/useful_demand/households/total_demand_type/useful_demand_apartments.gql b/gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_apartments.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_demand_type/useful_demand_apartments.gql rename to gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_apartments.gql diff --git a/gqueries/general/useful_demand/households/total_demand_type/useful_demand_detached_houses.gql b/gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_detached_houses.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_demand_type/useful_demand_detached_houses.gql rename to gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_detached_houses.gql diff --git a/gqueries/general/useful_demand/households/total_demand_type/useful_demand_semi_detached_houses.gql b/gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_semi_detached_houses.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_demand_type/useful_demand_semi_detached_houses.gql rename to gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_semi_detached_houses.gql diff --git a/gqueries/general/useful_demand/households/total_demand_type/useful_demand_terraced_houses.gql b/gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_terraced_houses.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_demand_type/useful_demand_terraced_houses.gql rename to gqueries/general/useful_demand/households/totals/total_demand_type/useful_demand_terraced_houses.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1945_1964.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1945_1964.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1945_1964.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1945_1964.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1965_1984.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1965_1984.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1965_1984.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1965_1984.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1985_2004.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1985_2004.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_1985_2004.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_1985_2004.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_2005_present.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_2005_present.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_2005_present.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_2005_present.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_before_1945.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_before_1945.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_before_1945.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_before_1945.gql diff --git a/gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_future.gql b/gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_future.gql similarity index 100% rename from gqueries/general/useful_demand/households/total_residences_building_period/useful_demand_total_residences_future.gql rename to gqueries/general/useful_demand/households/totals/total_residences_building_period/useful_demand_total_residences_future.gql diff --git a/gqueries/input_elements/max_value/max_value_dataset_derived_direct_emissions.gql b/gqueries/input_elements/max_value/max_value_dataset_derived_direct_emissions.gql new file mode 100644 index 0000000000..e8493abc39 --- /dev/null +++ b/gqueries/input_elements/max_value/max_value_dataset_derived_direct_emissions.gql @@ -0,0 +1,16 @@ +# This set the max value for dataset-derived direct emissions inputs +# It is set as a fraction of the total emissions, which are in MT, so it is scaled to kT as well +# It is then rounded to 10 ktonnes to make the max value cleaner + +- query = + ROUND( + DIVIDE( + PRODUCT( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + THOUSANDS + ), + 5.0 + ), + -1 + ) +- unit = kT diff --git a/gqueries/input_elements/start_value/households_share_of_apartments.gql b/gqueries/input_elements/start_value/households_share_of_apartments.gql new file mode 100644 index 0000000000..a18cb8affd --- /dev/null +++ b/gqueries/input_elements/start_value/households_share_of_apartments.gql @@ -0,0 +1,2 @@ +- query = PRODUCT(DIVIDE(Q(number_of_apartments), Q(number_of_residences)), 100.0) +- unit = share diff --git a/gqueries/input_elements/start_value/households_share_of_detached.gql b/gqueries/input_elements/start_value/households_share_of_detached.gql new file mode 100644 index 0000000000..30ffca2880 --- /dev/null +++ b/gqueries/input_elements/start_value/households_share_of_detached.gql @@ -0,0 +1,2 @@ +- query = PRODUCT(DIVIDE(Q(number_of_detached_houses), Q(number_of_residences)), 100.0) +- unit = share diff --git a/gqueries/input_elements/start_value/households_share_of_semi_detached.gql b/gqueries/input_elements/start_value/households_share_of_semi_detached.gql new file mode 100644 index 0000000000..b4f37cb6d1 --- /dev/null +++ b/gqueries/input_elements/start_value/households_share_of_semi_detached.gql @@ -0,0 +1,2 @@ +- query = PRODUCT(DIVIDE(Q(number_of_semi_detached_houses), Q(number_of_residences)), 100.0) +- unit = share diff --git a/gqueries/input_elements/start_value/households_share_of_terraced.gql b/gqueries/input_elements/start_value/households_share_of_terraced.gql new file mode 100644 index 0000000000..ab0de57aa1 --- /dev/null +++ b/gqueries/input_elements/start_value/households_share_of_terraced.gql @@ -0,0 +1,2 @@ +- query = PRODUCT(DIVIDE(Q(number_of_terraced_houses), Q(number_of_residences)), 100.0) +- unit = share diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_insulation_costs.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_insulation_costs.gql new file mode 100644 index 0000000000..0b268b16fa --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_insulation_costs.gql @@ -0,0 +1,2 @@ +- query = Q(costs_building_and_installations_buildings_insulation) +- unit = euro diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_useful_demand_for_space_heating.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_useful_demand_for_space_heating.gql new file mode 100644 index 0000000000..6fe688e3f4 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_buildings_useful_demand_for_space_heating.gql @@ -0,0 +1,2 @@ +- query = Q(useful_demand_buildings_total) +- unit = PJ diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_insulation_costs.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_insulation_costs.gql new file mode 100644 index 0000000000..3d83c91ac0 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_insulation_costs.gql @@ -0,0 +1,2 @@ +- query = Q(costs_building_and_installations_households_insulation) +- unit = euro diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_useful_demand_for_space_heating.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_useful_demand_for_space_heating.gql new file mode 100644 index 0000000000..64510dc9da --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_households_useful_demand_for_space_heating.gql @@ -0,0 +1,8 @@ +- query = + SUM( + Q(useful_demand_apartments), + Q(useful_demand_detached_houses), + Q(useful_demand_semi_detached_houses), + Q(useful_demand_terraced_houses) + ) +- unit = PJ diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_2005_present.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_2005_present.gql new file mode 100644 index 0000000000..2c08379525 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_2005_present.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_apartments_2005_present) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_future.gql new file mode 100644 index 0000000000..d75385ddde --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_apartments_future.gql @@ -0,0 +1,3 @@ +- query = Q(number_of_apartments_future) +- unit = # + diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings.gql new file mode 100644 index 0000000000..f5896c6366 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_buildings) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings_present.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings_present.gql new file mode 100644 index 0000000000..ed4459d14c --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_buildings_present.gql @@ -0,0 +1,2 @@ +- query = AREA(present_number_of_buildings) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_detached_houses_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_detached_houses_future.gql new file mode 100644 index 0000000000..3b88d0effa --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_detached_houses_future.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_detached_houses_future) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences.gql new file mode 100644 index 0000000000..17cc204e07 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1945_1964.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1945_1964.gql new file mode 100644 index 0000000000..ccfa6753ed --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1945_1964.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_1945_1964) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1965_1984.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1965_1984.gql new file mode 100644 index 0000000000..70da6dd4dc --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1965_1984.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_1965_1984) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1985_2004.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1985_2004.gql new file mode 100644 index 0000000000..cd626b1a9a --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_1985_2004.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_1985_2004) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_2005_present.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_2005_present.gql new file mode 100644 index 0000000000..87777d8f03 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_2005_present.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_2005_present) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_before_1945.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_before_1945.gql new file mode 100644 index 0000000000..f0bd38a74a --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_before_1945.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_before_1945) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_future.gql new file mode 100644 index 0000000000..bff60c2e74 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_future.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_residences_future) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_new_input.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_new_input.gql new file mode 100644 index 0000000000..3685e64c67 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_residences_new_input.gql @@ -0,0 +1,2 @@ +- query = INPUT_VALUE(households_number_of_residences_new) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_semi_detached_houses_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_semi_detached_houses_future.gql new file mode 100644 index 0000000000..f74c524fee --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_semi_detached_houses_future.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_semi_detached_houses_future) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_terraced_houses_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_terraced_houses_future.gql new file mode 100644 index 0000000000..9330559966 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_number_of_terraced_houses_future.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_terraced_houses_future) +- unit = # diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_2005_present.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_2005_present.gql new file mode 100644 index 0000000000..e53be5ba49 --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_2005_present.gql @@ -0,0 +1,2 @@ +- query = Q(useful_demand_apartments_2005_present) +- unit = PJ diff --git a/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_future.gql b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_future.gql new file mode 100644 index 0000000000..8bb49476dc --- /dev/null +++ b/gqueries/mechanical_turk/demand/heat_built_environment_spec/turk_useful_demand_apartments_future.gql @@ -0,0 +1,2 @@ +- query = Q(useful_demand_apartments_future) +- unit = PJ diff --git a/gqueries/mechanical_turk/demand/turk_appliances_demand_in_households.gql b/gqueries/mechanical_turk/demand/population_spec/turk_appliances_demand_in_households.gql similarity index 100% rename from gqueries/mechanical_turk/demand/turk_appliances_demand_in_households.gql rename to gqueries/mechanical_turk/demand/population_spec/turk_appliances_demand_in_households.gql diff --git a/gqueries/mechanical_turk/demand/turk_cooling_demand_in_households.gql b/gqueries/mechanical_turk/demand/population_spec/turk_cooling_demand_in_households.gql similarity index 100% rename from gqueries/mechanical_turk/demand/turk_cooling_demand_in_households.gql rename to gqueries/mechanical_turk/demand/population_spec/turk_cooling_demand_in_households.gql diff --git a/gqueries/mechanical_turk/demand/turk_heat_demand_in_households.gql b/gqueries/mechanical_turk/demand/population_spec/turk_heat_demand_in_households.gql similarity index 100% rename from gqueries/mechanical_turk/demand/turk_heat_demand_in_households.gql rename to gqueries/mechanical_turk/demand/population_spec/turk_heat_demand_in_households.gql diff --git a/gqueries/mechanical_turk/demand/turk_hot_water_demand_in_households.gql b/gqueries/mechanical_turk/demand/population_spec/turk_hot_water_demand_in_households.gql similarity index 100% rename from gqueries/mechanical_turk/demand/turk_hot_water_demand_in_households.gql rename to gqueries/mechanical_turk/demand/population_spec/turk_hot_water_demand_in_households.gql diff --git a/gqueries/mechanical_turk/demand/turk_hhp_ambient_heat_input_share.gql b/gqueries/mechanical_turk/demand/turk_hhp_ambient_heat_input_share.gql deleted file mode 100644 index a4f84436b6..0000000000 --- a/gqueries/mechanical_turk/demand/turk_hhp_ambient_heat_input_share.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = V(households_space_heater_hybrid_heatpump_air_water_electricity, ambient_heat_input_conversion) -- unit = diff --git a/gqueries/mechanical_turk/demand/turk_hhp_cop_constant.gql b/gqueries/mechanical_turk/demand/turk_hhp_cop_constant.gql deleted file mode 100644 index 54740ad89b..0000000000 --- a/gqueries/mechanical_turk/demand/turk_hhp_cop_constant.gql +++ /dev/null @@ -1,5 +0,0 @@ -- query = - SUM(V(households_space_heater_hybrid_heatpump_air_water_electricity, ambient_heat_input_conversion), - V(households_space_heater_hybrid_heatpump_air_water_electricity, electricity_input_conversion) - ) / V(households_space_heater_hybrid_heatpump_air_water_electricity, electricity_input_conversion) -- unit = diff --git a/gqueries/mechanical_turk/demand/turk_hhp_electricity_input_share.gql b/gqueries/mechanical_turk/demand/turk_hhp_electricity_input_share.gql deleted file mode 100644 index c73b99ac08..0000000000 --- a/gqueries/mechanical_turk/demand/turk_hhp_electricity_input_share.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = V(households_space_heater_hybrid_heatpump_air_water_electricity, electricity_input_conversion) -- unit = diff --git a/gqueries/mechanical_turk/demand/turk_hhp_network_gas_input_share.gql b/gqueries/mechanical_turk/demand/turk_hhp_network_gas_input_share.gql deleted file mode 100644 index 95424d04fb..0000000000 --- a/gqueries/mechanical_turk/demand/turk_hhp_network_gas_input_share.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = V(households_space_heater_hybrid_heatpump_air_water_electricity, network_gas_input_conversion) -- unit = diff --git a/gqueries/mechanical_turk/demand/turk_roof_surface_available_pv.gql b/gqueries/mechanical_turk/demand/turk_roof_surface_available_pv.gql deleted file mode 100644 index cf01de3777..0000000000 --- a/gqueries/mechanical_turk/demand/turk_roof_surface_available_pv.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = AREA(residences_roof_surface_available_for_pv) -- unit = km2 diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..aca1fa58be --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,9 @@ +# Sum of total CO2 and other GHG emissions IPCC categories incl. indirect emissions (ind_CO2), +# LULUCF (4) and international transport (1.D.1) + +- unit = MT +- query = + SUM( + Q(direct_emissions_ipcc_co2_incl_indirect_emissions_lulucf_bunkers), + Q(direct_emissions_ipcc_other_ghg_incl_indirect_emissions_lulucf_bunkers) + ) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..a786b9af5e --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,5 @@ +# Total GHG emissions IPCC categories excl. indirect emissions (ind_CO2), LULUCF (4) and +# international transport (1.D.1) + +- unit = MT +- query = Q(direct_emissions_ipcc_total_ghg_excl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..1344577034 --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,5 @@ +# Total GHG emissions IPCC categories incl. indirect emissions (ind_CO2), LULUCF (4) and +# international transport (1.D.1) + +- unit = MT +- query = Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..1ec20907da --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,8 @@ +# Sum of CO2 emissions and other GHG emissions queries + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_excl_indirect_emissions_lulucf_bunkers), + Q(direct_emissions_other_ghg_excl_indirect_emissions_lulucf_bunkers) + ) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..013675d4d6 --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_sum_co2_other_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,8 @@ +# Sum of CO2 emissions and other GHG emissions queries + +- unit = MT +- query = + SUM( + Q(direct_emissions_co2_incl_indirect_emissions_lulucf_bunkers), + Q(direct_emissions_other_ghg_incl_indirect_emissions_lulucf_bunkers) + ) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_all_nodes.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_all_nodes.gql new file mode 100644 index 0000000000..e4f6cf88ec --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_all_nodes.gql @@ -0,0 +1,18 @@ +# Mechanical turk query for total GHG emissions incl. indirect, LULUCF and international transport +# Sums results for all energy and molecule nodes + +- unit = MT +- query = + DIVIDE( + SUM( + V( + ALL(), + direct_reporting_emissions_total_ghg_emissions + ), + MV( + MALL(), + direct_reporting_emissions_total_ghg_emissions + ) + ), + BILLIONS + ) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..60ea2731ec --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,4 @@ +# Total GHG emissions excl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = Q(direct_emissions_total_ghg_excl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql new file mode 100644 index 0000000000..e8ae41c34d --- /dev/null +++ b/gqueries/mechanical_turk/emissions/turk_direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers.gql @@ -0,0 +1,4 @@ +# Total GHG emissions incl. indirect emissions, LULUCF and international transport + +- unit = MT +- query = Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_ht_supply.gql b/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_ht_supply.gql index caa6c175b4..5893c7f94c 100644 --- a/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_ht_supply.gql +++ b/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_ht_supply.gql @@ -4,6 +4,7 @@ Q(energy_heat_backup_burner_ht_network_gas_for_heat_network_ht_mekko), Q(residual_heat_in_heat_network_ht_for_heat_network_ht_mekko), Q(energy_chp_combined_cycle_ht_network_gas_for_heat_network_ht_mekko), + Q(energy_chp_combined_cycle_ht_hydrogen_for_heat_network_ht_mekko), Q(energy_chp_local_engine_ht_network_gas_for_heat_network_ht_mekko), Q(energy_chp_local_ht_wood_pellets_ccs_must_run_for_heat_network_ht_mekko), Q(energy_chp_local_ht_wood_pellets_ccs_dispatchable_for_heat_network_ht_mekko), diff --git a/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_mt_supply.gql b/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_mt_supply.gql index 208617183b..282fbf6fe3 100644 --- a/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_mt_supply.gql +++ b/gqueries/mechanical_turk/mekko/turk_mekko_of_collective_heat_mt_supply.gql @@ -4,6 +4,7 @@ Q(energy_heat_backup_burner_mt_network_gas_for_heat_network_mt_mekko), Q(residual_heat_in_mt_heat_network_for_heat_network_mt_mekko), Q(energy_chp_combined_cycle_mt_network_gas_for_heat_network_mt_mekko), + Q(energy_chp_combined_cycle_mt_hydrogen_for_heat_network_mt_mekko), Q(energy_chp_local_engine_mt_network_gas_for_heat_network_mt_mekko), Q(energy_chp_local_mt_wood_pellets_ccs_must_run_for_heat_network_mt_mekko), Q(energy_chp_local_mt_wood_pellets_ccs_dispatchable_for_heat_network_mt_mekko), diff --git a/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_chemical_industry.gql b/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_chemical_industry.gql index c588fbcf66..deccd89d41 100644 --- a/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_chemical_industry.gql +++ b/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_chemical_industry.gql @@ -8,7 +8,7 @@ V( FILTER( ALL() - ,"merit_order && (merit_order.group == :industry_chemicals_electricity || merit_order.demand_profile ==:industry_fertilizers_heat || merit_order.demand_profile ==:industry_fertilizers_heat || merit_order.group == :industry_chemicals_heat )" + ,"merit_order && (merit_order.group == :industry_chemicals_electricity || merit_order.demand_profile == :industry_fertilizers_heat || merit_order.demand_profile == :industry_fertilizers_heat || merit_order.group == :industry_chemicals_heat )" ),electricity_input_curve ) ) diff --git a/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_other_industry.gql b/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_other_industry.gql index 2e10e019da..2ecb4e5419 100644 --- a/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_other_industry.gql +++ b/gqueries/modules/multi_year_charts/flexible_capacity_chart/myc_flexible_capacity_in_load_shifting_other_industry.gql @@ -7,7 +7,7 @@ SUM_CURVES( V( FILTER(ALL() - ,"merit_order && (merit_order.group == :industry_other_electricity || merit_order.demand_profile ==:industry_other_heat || merit_order.group ==: industry_other_heat)"),electricity_input_curve) + ,"merit_order && (merit_order.group == :industry_other_electricity || merit_order.demand_profile == :industry_other_heat || merit_order.group == :industry_other_heat)"),electricity_input_curve) ) ), DIVIDE(INPUT_VALUE(input_capacity_of_industry_other_flexibility_load_shifting_electricity),100.0) diff --git a/gqueries/modules/multi_year_charts/installed_production_capacity_chart/myc_installed_production_capacity_in_hydrogen_chp_ccgt.gql b/gqueries/modules/multi_year_charts/installed_production_capacity_chart/myc_installed_production_capacity_in_hydrogen_chp_ccgt.gql new file mode 100644 index 0000000000..b44b433542 --- /dev/null +++ b/gqueries/modules/multi_year_charts/installed_production_capacity_chart/myc_installed_production_capacity_in_hydrogen_chp_ccgt.gql @@ -0,0 +1,8 @@ +# The installed production capacity in hydrogen chp ccgt + +- unit = MW +- query = + SUM( + Q(merit_order_hydrogen_chp_ccgt_ht_capacity_in_merit_order_table), + Q(merit_order_hydrogen_chp_ccgt_mt_capacity_in_merit_order_table) + ) diff --git a/gqueries/output_elements/dashboard/dashboard_direct_emissions_reduction_of_total_ghg_emissions_versus_1990.gql b/gqueries/output_elements/dashboard/dashboard_direct_emissions_reduction_of_total_ghg_emissions_versus_1990.gql new file mode 100644 index 0000000000..af1edef752 --- /dev/null +++ b/gqueries/output_elements/dashboard/dashboard_direct_emissions_reduction_of_total_ghg_emissions_versus_1990.gql @@ -0,0 +1,18 @@ +# Reduction of direct total GHG emissions future vs. 1990 + +- query = + IF( + GRAPH().future?, + -> { + SUM( + -1, + DIVIDE( + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers), + Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990) + ) + ) + }, + -> { 0 } + ) + +- unit = factor diff --git a/gqueries/output_elements/dashboard/dashboard_direct_emissions_total_ghg_emissions.gql b/gqueries/output_elements/dashboard/dashboard_direct_emissions_total_ghg_emissions.gql new file mode 100644 index 0000000000..3c9aa92aee --- /dev/null +++ b/gqueries/output_elements/dashboard/dashboard_direct_emissions_total_ghg_emissions.gql @@ -0,0 +1,4 @@ +# Direct total GHG emissions in future year + +- query = Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers) +- unit = MT diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_future_per_building_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_future_per_building_bar.gql new file mode 100644 index 0000000000..88b5ff421e --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_future_per_building_bar.gql @@ -0,0 +1,3 @@ +# The unit GJ/# means Gigajoule per residence equivalent (woningequivalenten) in this case. +- query = Q(useful_demand_buildings_future_per_building) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_present_per_building_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_present_per_building_bar.gql new file mode 100644 index 0000000000..5e77c30b59 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_building/useful_demand_buildings_present_per_building_bar.gql @@ -0,0 +1,3 @@ +# The unit GJ/# means Gigajoule per residence equivalent (woningequivalenten) in this case. +- query = Q(useful_demand_buildings_present_per_building) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1945_1964_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1945_1964_bar.gql new file mode 100644 index 0000000000..7c13bc6a93 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1945_1964_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_1945_1964) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1965_1984_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1965_1984_bar.gql new file mode 100644 index 0000000000..f3608f69dc --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1965_1984_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_1965_1984) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1985_2004_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1985_2004_bar.gql new file mode 100644 index 0000000000..548c76290e --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_1985_2004_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_1985_2004) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_2005_present_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_2005_present_bar.gql new file mode 100644 index 0000000000..54c240328a --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_2005_present_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_2005_present) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_before_1945_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_before_1945_bar.gql new file mode 100644 index 0000000000..844ee10fb2 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_before_1945_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_before_1945) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_future_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_future_bar.gql new file mode 100644 index 0000000000..80f6d2420a --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_apartment_future_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_apartment_future) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1945_1964_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1945_1964_bar.gql new file mode 100644 index 0000000000..3f67c9a09c --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1945_1964_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_1945_1964) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1965_1984_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1965_1984_bar.gql new file mode 100644 index 0000000000..d66b5eefbd --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1965_1984_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_1965_1984) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1985_2004_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1985_2004_bar.gql new file mode 100644 index 0000000000..f91c3bded5 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_1985_2004_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_1985_2004) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_2005_present_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_2005_present_bar.gql new file mode 100644 index 0000000000..5a4b9d523b --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_2005_present_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_2005_present) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_before_1945_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_before_1945_bar.gql new file mode 100644 index 0000000000..86b5ac4c7a --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_before_1945_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_before_1945) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_future_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_future_bar.gql new file mode 100644 index 0000000000..dc28009f57 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_fully_detached_house_future_bar.gql @@ -0,0 +1,5 @@ +# Named 'fully_detached' instead of 'detached' so ETModel's dropdown filter (matches on partial +# query name) can distinguish this from 'semi_detached'. + +- query = Q(useful_heat_demand_per_detached_house_future) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1945_1964_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1945_1964_bar.gql new file mode 100644 index 0000000000..ade209592c --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1945_1964_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_1945_1964) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1965_1984_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1965_1984_bar.gql new file mode 100644 index 0000000000..4fc320f80f --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1965_1984_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_1965_1984) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1985_2004_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1985_2004_bar.gql new file mode 100644 index 0000000000..b8dfdd6c3b --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_1985_2004_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_1985_2004) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_2005_present_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_2005_present_bar.gql new file mode 100644 index 0000000000..cd80e6c6f7 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_2005_present_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_2005_present) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_before_1945_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_before_1945_bar.gql new file mode 100644 index 0000000000..a840d9bba1 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_before_1945_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_before_1945) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_future_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_future_bar.gql new file mode 100644 index 0000000000..31396bbd45 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_semi_detached_house_future_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_semi_detached_house_future) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1945_1964_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1945_1964_bar.gql new file mode 100644 index 0000000000..1bf8202b6b --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1945_1964_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_1945_1964) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1965_1984_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1965_1984_bar.gql new file mode 100644 index 0000000000..b37c037388 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1965_1984_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_1965_1984) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1985_2004_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1985_2004_bar.gql new file mode 100644 index 0000000000..37bff4a83d --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_1985_2004_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_1985_2004) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_2005_present_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_2005_present_bar.gql new file mode 100644 index 0000000000..17ba7ab283 --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_2005_present_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_2005_present) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_before_1945_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_before_1945_bar.gql new file mode 100644 index 0000000000..a835d9761a --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_before_1945_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_before_1945) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_future_bar.gql b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_future_bar.gql new file mode 100644 index 0000000000..7cd3f7fc9a --- /dev/null +++ b/gqueries/output_elements/output_series/category_bar_heat_demand_per_residence/useful_heat_demand_per_terraced_house_future_bar.gql @@ -0,0 +1,2 @@ +- query = Q(useful_heat_demand_per_terraced_house_future) +- unit = GJ/# diff --git a/gqueries/output_elements/output_series/d3_172_merit_order_hourly_supply/energy_chp_combined_cycle_hydrogen.gql b/gqueries/output_elements/output_series/d3_172_merit_order_hourly_supply/energy_chp_combined_cycle_hydrogen.gql new file mode 100644 index 0000000000..154ab803bc --- /dev/null +++ b/gqueries/output_elements/output_series/d3_172_merit_order_hourly_supply/energy_chp_combined_cycle_hydrogen.gql @@ -0,0 +1,6 @@ +- query = + SUM_CURVES( + V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_curve), + V(energy_chp_combined_cycle_mt_hydrogen, electricity_output_curve) + ) +- unit = curve diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..ae604cfe13 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a1_total_ghg_1990) \ No newline at end of file diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..5a12d6f670 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a1_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a1_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..77e14cb5ab --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a2_total_ghg_1990) \ No newline at end of file diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..93112d90b4 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a2_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a2_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..83a2a9c6c7 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a3_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..cc0a39f328 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a3_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a3_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..a73d46f950 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4a_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..b1a1ba3904 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4a_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4a_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..2f20f2daa7 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4b_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..5e86228c79 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4b_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4b_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..4dd4bfff5f --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4c_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..4ad593c91e --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a4c_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a4c_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..3fdee2dcde --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a5_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..7415b42600 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1a5_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1a5_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..5a9cf209a1 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1b_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..122685ef84 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1b_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1b_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..151e4958cc --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1c_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..f35223b3a0 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1c_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1c_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..9122198d84 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1d1_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..d5a60a9f7a --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_1d1_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_1d1_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..f6ea6a1b6c --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_2_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..7dd4bc0fdc --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_2_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_2_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..458a550d33 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_3_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..5a4a7c155e --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_3_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_3_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..15b63409e6 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_4_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..00011b093e --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_4_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_4_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..a4fc23fea9 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_5_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..84b53b44e8 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_5_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_5_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..9b9d2eeb29 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_ind_co2_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..924190810c --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_ind_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_ind_co2_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..decce866fb --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_future_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_future_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..f146eb4c71 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_future_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = future:Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_present_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_present_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..7950915033 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_ipcc_category_chart/direct_emissions_ipcc_total_ghg_present_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = present:Q(direct_emissions_ipcc_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..98a6866d1e --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_agriculture_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..af403e6451 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_agriculture_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_agriculture_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..2b1e6a7605 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_buildings_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..d53927b733 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_buildings_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_buildings_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..26a48aafb1 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_bunkers_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..5fd9b6005f --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_bunkers_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_bunkers_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..d2347251ac --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_energy_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..730e6cf98b --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_energy_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_energy_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..09814c91d5 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_households_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..b402e133d4 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_households_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_households_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..3ccbb1362f --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_industry_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..d5f2bf4529 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_industry_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_industry_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..f8a237aa78 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_lulucf_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..2705ddc271 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_lulucf_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_lulucf_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..0855c7051b --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_other_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..cd9a5a24ed --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_other_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_other_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..2e6415dc34 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_future_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_future_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..a5ba9cc7cf --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_future_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = future:Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_present_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_present_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..2d4f07fb71 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_total_ghg_present_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = present:Q(direct_emissions_total_ghg_incl_indirect_emissions_lulucf_bunkers) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..3c54b47694 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_transport_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..45ab3600cc --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_transport_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_transport_total_ghg) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_1990_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_1990_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..cd9b4960ea --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_1990_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_waste_total_ghg_1990) diff --git a/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_for_direct_emissions_chart.gql b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_for_direct_emissions_chart.gql new file mode 100644 index 0000000000..ca55a2cce5 --- /dev/null +++ b/gqueries/output_elements/output_series/direct_emissions_per_sector_chart/direct_emissions_waste_total_ghg_for_direct_emissions_chart.gql @@ -0,0 +1,2 @@ +- unit = MT +- query = Q(direct_emissions_waste_total_ghg) diff --git a/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_existing_buildings_mekko.gql b/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_existing_buildings_mekko.gql new file mode 100644 index 0000000000..610c8604f5 --- /dev/null +++ b/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_existing_buildings_mekko.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_buildings_present) +- unit = # diff --git a/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_new_buildings_mekko.gql b/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_new_buildings_mekko.gql new file mode 100644 index 0000000000..7d4c4e9a62 --- /dev/null +++ b/gqueries/output_elements/output_series/mekko_150_population_residences_overview/number_of_new_buildings_mekko.gql @@ -0,0 +1,2 @@ +- query = Q(number_of_buildings_future) +- unit = # diff --git a/gqueries/output_elements/output_series/mekko_collective_heat_network_ht/energy_chp_combined_cycle_ht_hydrogen_for_heat_network_ht_mekko.gql b/gqueries/output_elements/output_series/mekko_collective_heat_network_ht/energy_chp_combined_cycle_ht_hydrogen_for_heat_network_ht_mekko.gql new file mode 100644 index 0000000000..a965356fbb --- /dev/null +++ b/gqueries/output_elements/output_series/mekko_collective_heat_network_ht/energy_chp_combined_cycle_ht_hydrogen_for_heat_network_ht_mekko.gql @@ -0,0 +1,2 @@ +- unit = PJ +- query = Q(energy_chp_combined_cycle_ht_hydrogen_output_of_steam_hot_water) diff --git a/gqueries/output_elements/output_series/mekko_collective_heat_network_mt/energy_chp_combined_cycle_mt_hydrogen_for_heat_network_mt_mekko.gql b/gqueries/output_elements/output_series/mekko_collective_heat_network_mt/energy_chp_combined_cycle_mt_hydrogen_for_heat_network_mt_mekko.gql new file mode 100644 index 0000000000..9b970ccb80 --- /dev/null +++ b/gqueries/output_elements/output_series/mekko_collective_heat_network_mt/energy_chp_combined_cycle_mt_hydrogen_for_heat_network_mt_mekko.gql @@ -0,0 +1,2 @@ +- unit = PJ +- query = Q(energy_chp_combined_cycle_mt_hydrogen_output_of_steam_hot_water) diff --git a/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_ht_merit_order.gql b/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_ht_merit_order.gql new file mode 100644 index 0000000000..633f266e89 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_ht_merit_order.gql @@ -0,0 +1,9 @@ +- query = + { + capacity: Q(merit_order_hydrogen_chp_ccgt_ht_capacity_in_merit_order_table), + availability: Q(merit_order_hydrogen_chp_ccgt_ht_availability_in_merit_order_table), + full_load_hours: Q(merit_order_hydrogen_chp_ccgt_ht_full_load_hours_in_merit_order_table), + load_factor: Q(merit_order_hydrogen_chp_ccgt_ht_load_factor_in_merit_order_table), + operating_costs: Q(merit_order_hydrogen_chp_ccgt_ht_operating_costs_in_merit_order_table), + position: Q(merit_order_hydrogen_chp_ccgt_ht_position_in_merit_order_table) + } diff --git a/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_mt_merit_order.gql b/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_mt_merit_order.gql new file mode 100644 index 0000000000..b6887ddca7 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/hydrogen_chp_ccgt_mt_merit_order.gql @@ -0,0 +1,9 @@ +- query = + { + capacity: Q(merit_order_hydrogen_chp_ccgt_mt_capacity_in_merit_order_table), + availability: Q(merit_order_hydrogen_chp_ccgt_mt_availability_in_merit_order_table), + full_load_hours: Q(merit_order_hydrogen_chp_ccgt_mt_full_load_hours_in_merit_order_table), + load_factor: Q(merit_order_hydrogen_chp_ccgt_mt_load_factor_in_merit_order_table), + operating_costs: Q(merit_order_hydrogen_chp_ccgt_mt_operating_costs_in_merit_order_table), + position: Q(merit_order_hydrogen_chp_ccgt_mt_position_in_merit_order_table) + } diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_ccgt_ccs_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_ccgt_ccs_availability_in_merit_order_table.gql index bfe159e8f0..08719edce9 100644 --- a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_ccgt_ccs_availability_in_merit_order_table.gql +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_ccgt_ccs_availability_in_merit_order_table.gql @@ -1,2 +1,2 @@ -- query = V(energy_power_combined_cycle_ccs_network_gas_dispatchable, "availability *100") +- query = V(energy_power_combined_cycle_ccs_network_gas_dispatchable, "availability * 100") - unit = Percentage \ No newline at end of file diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_dispatchable_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_dispatchable_availability_in_merit_order_table.gql index be8e561eaa..3eb7b1c623 100644 --- a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_dispatchable_availability_in_merit_order_table.gql +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_dispatchable_availability_in_merit_order_table.gql @@ -1,2 +1,2 @@ -- query = V(energy_power_turbine_network_gas_dispatchable, "availability *100") +- query = V(energy_power_turbine_network_gas_dispatchable, "availability * 100") - unit = Percentage \ No newline at end of file diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_must_run_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_must_run_availability_in_merit_order_table.gql index 9bf4835090..5d15ef86a0 100644 --- a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_must_run_availability_in_merit_order_table.gql +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_gas_turbine_must_run_availability_in_merit_order_table.gql @@ -1,2 +1,2 @@ -- query = V(energy_power_turbine_network_gas_must_run, "availability *100") +- query = V(energy_power_turbine_network_gas_must_run, "availability * 100") - unit = Percentage diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_ccgt_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_ccgt_availability_in_merit_order_table.gql index 3a1309e80f..1fe8713968 100644 --- a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_ccgt_availability_in_merit_order_table.gql +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_ccgt_availability_in_merit_order_table.gql @@ -1,2 +1,2 @@ -- query = V(energy_power_combined_cycle_hydrogen, "availability *100") +- query = V(energy_power_combined_cycle_hydrogen, "availability * 100") - unit = Percentage diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_availability_in_merit_order_table.gql new file mode 100644 index 0000000000..ca6ccd1db3 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_availability_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, "availability * 100") +- unit = percentage diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_capacity_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_capacity_in_merit_order_table.gql new file mode 100644 index 0000000000..8b972aca5d --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_capacity_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, "input_capacity * electricity_output_conversion * number_of_units") +- unit = MW diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_full_load_hours_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_full_load_hours_in_merit_order_table.gql new file mode 100644 index 0000000000..cd0b0d185a --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_full_load_hours_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, full_load_hours) +- unit = hours diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_load_factor_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_load_factor_in_merit_order_table.gql new file mode 100644 index 0000000000..e7d8d4aa11 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_load_factor_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, "full_load_hours / HOURS_PER_YEAR") +- unit = factor diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_operating_costs_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_operating_costs_in_merit_order_table.gql new file mode 100644 index 0000000000..5adb1698bb --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_operating_costs_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, marginal_costs) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_position_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_position_in_merit_order_table.gql new file mode 100644 index 0000000000..4d9b979fec --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_ht_position_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, merit_order_position) +- unit = number diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_availability_in_merit_order_table.gql new file mode 100644 index 0000000000..384b730bd8 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_availability_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, "availability * 100") +- unit = percentage diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_capacity_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_capacity_in_merit_order_table.gql new file mode 100644 index 0000000000..33ffbcf1cb --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_capacity_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, "input_capacity * electricity_output_conversion * number_of_units") +- unit = MW diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_full_load_hours_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_full_load_hours_in_merit_order_table.gql new file mode 100644 index 0000000000..74f9e8325e --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_full_load_hours_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, full_load_hours) +- unit = hours diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_load_factor_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_load_factor_in_merit_order_table.gql new file mode 100644 index 0000000000..fe955635da --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_load_factor_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, "full_load_hours / HOURS_PER_YEAR") +- unit = factor diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_operating_costs_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_operating_costs_in_merit_order_table.gql new file mode 100644 index 0000000000..ac2c35b71e --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_operating_costs_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, marginal_costs) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_position_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_position_in_merit_order_table.gql new file mode 100644 index 0000000000..e1002bc6c6 --- /dev/null +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_chp_ccgt_mt_position_in_merit_order_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, merit_order_position) +- unit = number diff --git a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_turbine_availability_in_merit_order_table.gql b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_turbine_availability_in_merit_order_table.gql index 48fa0e94d9..36ab6be3ad 100644 --- a/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_turbine_availability_in_merit_order_table.gql +++ b/gqueries/output_elements/output_series/table_116_merit_order/merit_order_hydrogen_turbine_availability_in_merit_order_table.gql @@ -1,2 +1,2 @@ -- query = V(energy_power_turbine_hydrogen, "availability *100") +- query = V(energy_power_turbine_hydrogen, "availability * 100") - unit = Percentage diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_capacity_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_capacity_in_chp_properties.gql new file mode 100644 index 0000000000..bca63600fb --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_capacity_in_chp_properties.gql @@ -0,0 +1,4 @@ +# capacity of energy_chp_combined_cycle_ht_hydrogen + +- query = future:DIVIDE(V(energy_chp_combined_cycle_ht_hydrogen,"nominal_capacity_electricity_output_per_unit * number_of_units"),THOUSANDS) +- unit = gw diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_electricity_production_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_electricity_production_in_chp_properties.gql new file mode 100644 index 0000000000..f9646c76c1 --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_electricity_production_in_chp_properties.gql @@ -0,0 +1,4 @@ +# electricity production of energy_chp_combined_cycle_ht_hydrogen + +- unit = PJ +- query = future:UNIT(V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity),billions) diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_heat_production_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_heat_production_in_chp_properties.gql new file mode 100644 index 0000000000..b6ca5d6f0a --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_heat_production_in_chp_properties.gql @@ -0,0 +1,4 @@ +# heat production of energy_chp_combined_cycle_ht_hydrogen + +- unit = PJ +- query = future:UNIT(V(energy_chp_combined_cycle_ht_hydrogen, "output_of_useable_heat + output_of_steam_hot_water"),billions) diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_number_of_units_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_number_of_units_in_chp_properties.gql new file mode 100644 index 0000000000..3f31a87872 --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_ht_hydrogen_number_of_units_in_chp_properties.gql @@ -0,0 +1,4 @@ +# number_of_units of energy_chp_combined_cycle_ht_hydrogen + +- query = future:V(energy_chp_combined_cycle_ht_hydrogen,number_of_units) +- unit = # diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_capacity_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_capacity_in_chp_properties.gql new file mode 100644 index 0000000000..95f697955c --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_capacity_in_chp_properties.gql @@ -0,0 +1,4 @@ +# capacity of energy_chp_combined_cycle_mt_hydrogen + +- query = future:DIVIDE(V(energy_chp_combined_cycle_mt_hydrogen,"nominal_capacity_electricity_output_per_unit * number_of_units"), THOUSANDS) +- unit = gw diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_electricity_production_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_electricity_production_in_chp_properties.gql new file mode 100644 index 0000000000..227cd063e5 --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_electricity_production_in_chp_properties.gql @@ -0,0 +1,4 @@ +# electricity production of energy_chp_combined_cycle_mt_hydrogen + +- unit = PJ +- query = future:UNIT(V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity),billions) diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_heat_production_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_heat_production_in_chp_properties.gql new file mode 100644 index 0000000000..a3e26f6ad6 --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_heat_production_in_chp_properties.gql @@ -0,0 +1,4 @@ +# heat production of energy_chp_combined_cycle_mt_hydrogen + +- unit = PJ +- query = future:UNIT(V(energy_chp_combined_cycle_mt_hydrogen, "output_of_useable_heat + output_of_steam_hot_water"),billions) diff --git a/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_number_of_units_in_chp_properties.gql b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_number_of_units_in_chp_properties.gql new file mode 100644 index 0000000000..f938de8e58 --- /dev/null +++ b/gqueries/output_elements/output_series/table_141_chp_properties/energy_chp_combined_cycle_mt_hydrogen_number_of_units_in_chp_properties.gql @@ -0,0 +1,4 @@ +# number_of_units of energy_chp_combined_cycle_mt_hydrogen + +- query = future:V(energy_chp_combined_cycle_mt_hydrogen,number_of_units) +- unit = # diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capacity_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capacity_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..69ddeaab6c --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capacity_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, "electricity_output_capacity * number_of_units") +- unit = MW diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capex_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capex_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..80b339e7c4 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_capex_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# CAPEX of power plant, based on annual CAPEX calculations + +- query = + IF( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_ht_hydrogen, capital_expenditures_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_full_load_hours_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_full_load_hours_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..cd0b0d185a --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_full_load_hours_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, full_load_hours) +- unit = hours diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_opex_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_opex_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..8fe1877382 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_opex_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# OPEX of power plant, based on annual OPEX calculations + +- query = + IF( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_ht_hydrogen, operating_expenses_including_fuel_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_position_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_position_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..4d9b979fec --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_position_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_ht_hydrogen, merit_order_position) +- unit = number diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_profit_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_profit_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..99a1b38f2a --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_profit_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# Profit of power plant, defined as revenue minus CAPEX and OPEX + +- query = + IF( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { Q(hydrogen_chp_ccgt_ht_revenue_in_power_plant_economic_performance_table) - Q(hydrogen_chp_ccgt_ht_capex_in_power_plant_economic_performance_table) - Q(hydrogen_chp_ccgt_ht_opex_in_power_plant_economic_performance_table) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_revenue_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_revenue_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..089bf2b55a --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_ht_revenue_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# Revenue of power plant, based on hourly revenue calculations + +- query = + IF( + V(energy_chp_combined_cycle_ht_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_ht_hydrogen, revenue_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capacity_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capacity_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..b958cbe242 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capacity_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, "electricity_output_capacity * number_of_units") +- unit = MW diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capex_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capex_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..56862ff95c --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_capex_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# CAPEX of power plant, based on annual CAPEX calculations + +- query = + IF( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_mt_hydrogen, capital_expenditures_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_full_load_hours_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_full_load_hours_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..74f9e8325e --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_full_load_hours_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, full_load_hours) +- unit = hours diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_opex_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_opex_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..bddeca4941 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_opex_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# OPEX of power plant, based on annual OPEX calculations + +- query = + IF( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_mt_hydrogen, operating_expenses_including_fuel_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_position_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_position_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..e1002bc6c6 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_position_in_power_plant_economic_performance_table.gql @@ -0,0 +1,2 @@ +- query = V(energy_chp_combined_cycle_mt_hydrogen, merit_order_position) +- unit = number diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_profit_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_profit_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..c8c3a59697 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_profit_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# Profit of power plant, defined as revenue minus CAPEX and OPEX + +- query = + IF( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { Q(hydrogen_chp_ccgt_mt_revenue_in_power_plant_economic_performance_table) - Q(hydrogen_chp_ccgt_mt_capex_in_power_plant_economic_performance_table) - Q(hydrogen_chp_ccgt_mt_opex_in_power_plant_economic_performance_table) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_revenue_in_power_plant_economic_performance_table.gql b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_revenue_in_power_plant_economic_performance_table.gql new file mode 100644 index 0000000000..3d24671fa8 --- /dev/null +++ b/gqueries/output_elements/output_series/table_economic_performance_power_plants/hydrogen_chp_ccgt_mt_revenue_in_power_plant_economic_performance_table.gql @@ -0,0 +1,9 @@ +# Revenue of power plant, based on hourly revenue calculations + +- query = + IF( + V(energy_chp_combined_cycle_mt_hydrogen, output_of_electricity) == 0, + -> { '-' }, + -> { V(energy_chp_combined_cycle_mt_hydrogen, revenue_per(:mwh_electricity)) } + ) +- unit = EUR/MWh diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1945_1964_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1945_1964_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1945_1964_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1945_1964_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1965_1984_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1965_1984_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1965_1984_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1965_1984_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1985_2004_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1985_2004_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_1985_2004_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_1985_2004_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_2005_present_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_2005_present_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_2005_present_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_2005_present_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_before_1945_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_before_1945_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_before_1945_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_before_1945_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_future_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_future_bar.gql similarity index 100% rename from gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_detached_houses_future_bar.gql rename to gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_fully_detached_houses_future_bar.gql diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1945_1964_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1945_1964_bar.gql deleted file mode 100644 index cef0756f8e..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1945_1964_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_1945_1964) -- unit = PJ - diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1965_1984_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1965_1984_bar.gql deleted file mode 100644 index ff3c527423..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1965_1984_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_1965_1984) -- unit = PJ - diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1985_2004_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1985_2004_bar.gql deleted file mode 100644 index b5e75ddfcc..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_1985_2004_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_1985_2004) -- unit = PJ - diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_2005_present_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_2005_present_bar.gql deleted file mode 100644 index 533cb462af..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_2005_present_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_2005_present) -- unit = PJ - diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_before_1945_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_before_1945_bar.gql deleted file mode 100644 index cab6013c06..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_before_1945_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_before_1945) -- unit = PJ - diff --git a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_future_bar.gql b/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_future_bar.gql deleted file mode 100644 index 747d00d9e9..0000000000 --- a/gqueries/output_elements/output_series/vertical_stacked_bar_250_residential_heating_demand/useful_demand_total_residences_future_bar.gql +++ /dev/null @@ -1,3 +0,0 @@ -- query = Q(useful_demand_total_residences_future) -- unit = PJ - diff --git a/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_power_hv_network_electricity@electricity.ad b/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_power_hv_network_electricity@electricity.ad new file mode 100644 index 0000000000..3aa732c2e7 --- /dev/null +++ b/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_power_hv_network_electricity@electricity.ad @@ -0,0 +1,2 @@ +- type = flexible +- reversed = true diff --git a/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_transmission_ht_steam_hot_water@steam_hot_water.ad b/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_transmission_ht_steam_hot_water@steam_hot_water.ad new file mode 100644 index 0000000000..3aa732c2e7 --- /dev/null +++ b/graphs/energy/edges/energy/energy_chp_combined_cycle_ht_hydrogen-energy_transmission_ht_steam_hot_water@steam_hot_water.ad @@ -0,0 +1,2 @@ +- type = flexible +- reversed = true diff --git a/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_power_hv_network_electricity@electricity.ad b/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_power_hv_network_electricity@electricity.ad new file mode 100644 index 0000000000..3aa732c2e7 --- /dev/null +++ b/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_power_hv_network_electricity@electricity.ad @@ -0,0 +1,2 @@ +- type = flexible +- reversed = true diff --git a/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_transmission_mt_steam_hot_water@steam_hot_water.ad b/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_transmission_mt_steam_hot_water@steam_hot_water.ad new file mode 100644 index 0000000000..3aa732c2e7 --- /dev/null +++ b/graphs/energy/edges/energy/energy_chp_combined_cycle_mt_hydrogen-energy_transmission_mt_steam_hot_water@steam_hot_water.ad @@ -0,0 +1,2 @@ +- type = flexible +- reversed = true diff --git a/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_ht_hydrogen@hydrogen.ad b/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_ht_hydrogen@hydrogen.ad new file mode 100644 index 0000000000..1716b1465e --- /dev/null +++ b/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_ht_hydrogen@hydrogen.ad @@ -0,0 +1,2 @@ +- type = share +- reversed = false diff --git a/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_mt_hydrogen@hydrogen.ad b/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_mt_hydrogen@hydrogen.ad new file mode 100644 index 0000000000..1716b1465e --- /dev/null +++ b/graphs/energy/edges/energy/energy_hydrogen_after_distribution-energy_chp_combined_cycle_mt_hydrogen@hydrogen.ad @@ -0,0 +1,2 @@ +- type = share +- reversed = false diff --git a/graphs/energy/nodes/agriculture/agriculture_burner_crude_oil.converter.ad b/graphs/energy/nodes/agriculture/agriculture_burner_crude_oil.converter.ad index 90a64552e2..f9415cb41f 100644 --- a/graphs/energy/nodes/agriculture/agriculture_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.788659793814433 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_burner_hydrogen.converter.ad b/graphs/energy/nodes/agriculture/agriculture_burner_hydrogen.converter.ad index ce50b7b6c3..4ec004628c 100644 --- a/graphs/energy/nodes/agriculture/agriculture_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_burner_network_gas.converter.ad b/graphs/energy/nodes/agriculture/agriculture_burner_network_gas.converter.ad index 93e7aa02d8..a986dda259 100644 --- a/graphs/energy/nodes/agriculture/agriculture_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_burner_wood_pellets.converter.ad b/graphs/energy/nodes/agriculture/agriculture_burner_wood_pellets.converter.ad index 277146aafd..163d778091 100644 --- a/graphs/energy/nodes/agriculture/agriculture_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.760824742268041 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_chp_engine_biogas.ad b/graphs/energy/nodes/agriculture/agriculture_chp_engine_biogas.ad index 44b9ca8cd2..7aba85625f 100644 --- a/graphs/energy/nodes/agriculture/agriculture_chp_engine_biogas.ad +++ b/graphs/energy/nodes/agriculture/agriculture_chp_engine_biogas.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_agriculture, emissions_agriculture_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, must_run_electricity_production, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, heat_production, + must_run_electricity_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(agriculture_chp_engine_biogas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(agriculture_chp_engine_biogas, full_load_hours) diff --git a/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_dispatchable.ad b/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_dispatchable.ad index 8f3d7f2678..4ac3771f76 100644 --- a/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_dispatchable.ad +++ b/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_dispatchable.ad @@ -4,10 +4,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_agriculture, emissions_agriculture_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, dispatchable_production, + direct_emissions, preset_demand, electricity_production, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -33,6 +32,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(agriculture_chp_engine_network_gas_dispatchable, demand) ~ full_load_hours = CENTRAL_PRODUCTION(agriculture_chp_engine_network_gas_dispatchable, full_load_hours) diff --git a/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_must_run.ad b/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_must_run.ad index f9fbda143e..f238613abe 100644 --- a/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_must_run.ad +++ b/graphs/energy/nodes/agriculture/agriculture_chp_engine_network_gas_must_run.ad @@ -4,10 +4,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_agriculture, emissions_agriculture_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, must_run_electricity_production, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, heat_production, + must_run_electricity_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [full_load_hours, output] @@ -34,6 +34,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(agriculture_chp_engine_network_gas_dispatchable, full_load_hours) diff --git a/graphs/energy/nodes/agriculture/agriculture_chp_wood_pellets.ad b/graphs/energy/nodes/agriculture/agriculture_chp_wood_pellets.ad index e08fdb93ba..bcee2c8650 100644 --- a/graphs/energy/nodes/agriculture/agriculture_chp_wood_pellets.ad +++ b/graphs/energy/nodes/agriculture/agriculture_chp_wood_pellets.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_agriculture, emissions_agriculture_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, dispatchable_production, + direct_emissions, preset_demand, electricity_production, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +27,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(agriculture_chp_wood_pellets, demand) ~ full_load_hours = CENTRAL_PRODUCTION(agriculture_chp_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_hydrogen_electricity.ad index 19c9f0041d..acbeeff028 100644 --- a/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_hydrogen_electricity.ad @@ -2,9 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h - ] + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, + costs_storage_and_conversion_p2h + ] - presentation_group = p2h - merit_order.demand_profile = weather/agriculture_heating - merit_order.demand_source = agriculture_hydrogen_hybrid_heat @@ -33,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = agriculture_heating ~ demand = 0.0 diff --git a/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_network_gas_electricity.ad index 00713f1bd3..bc8ce6f7da 100644 --- a/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/agriculture/agriculture_flexibility_p2h_network_gas_electricity.ad @@ -2,9 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h - ] + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, + costs_storage_and_conversion_p2h + ] - presentation_group = p2h - merit_order.demand_profile = weather/agriculture_heating - merit_order.demand_source = agriculture_network_gas_hybrid_heat @@ -33,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = agriculture_heating ~ demand = 0.0 diff --git a/graphs/energy/nodes/agriculture/agriculture_geothermal.converter.ad b/graphs/energy/nodes/agriculture/agriculture_geothermal.converter.ad index f921fc04bc..d1d45af082 100644 --- a/graphs/energy/nodes/agriculture/agriculture_geothermal.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_geothermal.converter.ad @@ -1,10 +1,9 @@ - input.electricity = 0.0416666666666667 - input.geothermal = 0.958333333333333 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 14.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_heat_backup_burner_network_gas.ad b/graphs/energy/nodes/agriculture/agriculture_heat_backup_burner_network_gas.ad index 43f4c86c8e..340203c0a9 100644 --- a/graphs/energy/nodes/agriculture/agriculture_heat_backup_burner_network_gas.ad +++ b/graphs/energy/nodes/agriculture/agriculture_heat_backup_burner_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 1.03 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_electricity_and_heat_production, - heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.98 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_electricity_and_heat_production diff --git a/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_electricity.ad b/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_electricity.ad index 61c2fa093c..fa55dd1b3e 100644 --- a/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_electricity.ad +++ b/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_electricity.ad @@ -1,10 +1,9 @@ - input.ambient_heat = 0.7777777777777778 - input.electricity = 0.2222222222222222 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, mv_net_demand, wacc_proven_tech, + direct_emissions, heat_production, application_group, mv_net_demand, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.99 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_ts_electricity.converter.ad b/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_ts_electricity.converter.ad index 915d4bc420..4bc7565cc8 100644 --- a/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_ts_electricity.converter.ad +++ b/graphs/energy/nodes/agriculture/agriculture_heatpump_water_water_ts_electricity.converter.ad @@ -1,10 +1,9 @@ - input.ambient_heat = 0.956521739130435 - input.electricity = 0.0434782608695652 - groups = [ - emissions, emissions_agriculture, emissions_agriculture_heating, - heat_production, application_group, mv_net_demand, wacc_proven_tech, + direct_emissions, heat_production, application_group, mv_net_demand, wacc_proven_tech, costs_building_and_installations_agriculture - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = agriculture_heating diff --git a/graphs/energy/nodes/buildings/buildings_appliances_coal.converter.ad b/graphs/energy/nodes/buildings/buildings_appliances_coal.converter.ad index ac6d896144..e969ebf2f1 100644 --- a/graphs/energy/nodes/buildings/buildings_appliances_coal.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_appliances_coal.converter.ad @@ -1,6 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_buildings, emissions_buildings_appliances, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = buildings_appliances diff --git a/graphs/energy/nodes/buildings/buildings_appliances_crude_oil.converter.ad b/graphs/energy/nodes/buildings/buildings_appliances_crude_oil.converter.ad index eda227f768..e969ebf2f1 100644 --- a/graphs/energy/nodes/buildings/buildings_appliances_crude_oil.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_appliances_crude_oil.converter.ad @@ -1,6 +1,4 @@ -- use = undefined -- groups = [ - emissions, emissions_buildings, emissions_buildings_appliances, - application_group - ] +- use = energetic +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = buildings_appliances diff --git a/graphs/energy/nodes/buildings/buildings_appliances_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_appliances_electricity.converter.ad index ee9ff021e1..0dbb149f32 100644 --- a/graphs/energy/nodes/buildings/buildings_appliances_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_appliances_electricity.converter.ad @@ -1,9 +1,7 @@ -- use = undefined -- groups = [ - emissions, emissions_buildings, emissions_buildings_appliances, - application_group, lv_net_demand - ] +- use = energetic +- groups = [direct_emissions, application_group, lv_net_demand] - free_co2_factor = 0.0 - merit_order.group = buildings_appliances - merit_order.level = lv - merit_order.type = consumer +- sector_label = buildings_appliances diff --git a/graphs/energy/nodes/buildings/buildings_appliances_network_gas.converter.ad b/graphs/energy/nodes/buildings/buildings_appliances_network_gas.converter.ad index 67f6c3c1d1..c365e26cb3 100644 --- a/graphs/energy/nodes/buildings/buildings_appliances_network_gas.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_appliances_network_gas.converter.ad @@ -1,8 +1,6 @@ -- use = undefined -- groups = [ - emissions, emissions_buildings, emissions_buildings_appliances, - application_group - ] +- use = energetic +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 - network_gas.profile = buildings_appliances - network_gas.type = consumer +- sector_label = buildings_appliances diff --git a/graphs/energy/nodes/buildings/buildings_appliances_wood_pellets.converter.ad b/graphs/energy/nodes/buildings/buildings_appliances_wood_pellets.converter.ad index eda227f768..e969ebf2f1 100644 --- a/graphs/energy/nodes/buildings/buildings_appliances_wood_pellets.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_appliances_wood_pellets.converter.ad @@ -1,6 +1,4 @@ -- use = undefined -- groups = [ - emissions, emissions_buildings, emissions_buildings_appliances, - application_group - ] +- use = energetic +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = buildings_appliances diff --git a/graphs/energy/nodes/buildings/buildings_cooling_airconditioning_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_cooling_airconditioning_electricity.converter.ad index 06f6941fb4..b221604bc6 100644 --- a/graphs/energy/nodes/buildings/buildings_cooling_airconditioning_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_cooling_airconditioning_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_buildings, emissions_buildings_cooling, - heat_production, application_group, lv_net_demand, wacc_proven_tech, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0025 - takes_part_in_ets = 0.0 +- sector_label = buildings_cooling diff --git a/graphs/energy/nodes/buildings/buildings_cooling_collective_heatpump_water_water_ts_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_cooling_collective_heatpump_water_water_ts_electricity.converter.ad index 0a93f882b7..ce6e48bd1c 100644 --- a/graphs/energy/nodes/buildings/buildings_cooling_collective_heatpump_water_water_ts_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_cooling_collective_heatpump_water_water_ts_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_buildings, emissions_buildings_cooling, - heat_production, application_group, lv_net_demand, wacc_proven_tech, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 2.25 - takes_part_in_ets = 0.0 +- sector_label = buildings_cooling diff --git a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_electricity.converter.ad index fde0544256..506d89a5a9 100644 --- a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_buildings, emissions_buildings_cooling, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.01 - takes_part_in_ets = 0.0 +- sector_label = buildings_cooling diff --git a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_network_gas.converter.ad b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_network_gas.converter.ad index d34a2e44d6..00b1e9ebdc 100644 --- a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_network_gas.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_air_water_network_gas.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_buildings, emissions_buildings_cooling, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 2.25 - takes_part_in_ets = 0.0 +- sector_label = buildings_cooling diff --git a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_surface_water_water_ts_electricity.ad b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_surface_water_water_ts_electricity.ad index 0d45bb989f..3a86a74af7 100644 --- a/graphs/energy/nodes/buildings/buildings_cooling_heatpump_surface_water_water_ts_electricity.ad +++ b/graphs/energy/nodes/buildings/buildings_cooling_heatpump_surface_water_water_ts_electricity.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_buildings, emissions_buildings_cooling, - heat_production, application_group, lv_net_demand, wacc_proven_tech, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 2.25 - takes_part_in_ets = 0.0 +- sector_label = buildings_cooling diff --git a/graphs/energy/nodes/buildings/buildings_lighting_efficient_fluorescent_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_lighting_efficient_fluorescent_electricity.converter.ad index 326c9e659f..6435c1eb3e 100644 --- a/graphs/energy/nodes/buildings/buildings_lighting_efficient_fluorescent_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_lighting_efficient_fluorescent_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.light = 0.2 - output.loss = elastic -- groups = [ - emissions, emissions_buildings, emissions_buildings_lighting, - application_group, lv_net_demand - ] +- groups = [direct_emissions, application_group, lv_net_demand] - free_co2_factor = 0.0 - merit_order.group = buildings_appliances - merit_order.level = lv - merit_order.type = consumer +- sector_label = buildings_lighting diff --git a/graphs/energy/nodes/buildings/buildings_lighting_led_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_lighting_led_electricity.converter.ad index 40571c468f..e7b1790cf1 100644 --- a/graphs/energy/nodes/buildings/buildings_lighting_led_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_lighting_led_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.light = 0.45 - output.loss = elastic -- groups = [ - emissions, emissions_buildings, emissions_buildings_lighting, - application_group, lv_net_demand - ] +- groups = [direct_emissions, application_group, lv_net_demand] - free_co2_factor = 0.0 - merit_order.group = buildings_appliances - merit_order.level = lv - merit_order.type = consumer +- sector_label = buildings_lighting diff --git a/graphs/energy/nodes/buildings/buildings_lighting_standard_fluorescent_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_lighting_standard_fluorescent_electricity.converter.ad index 1436bba713..5c86b9faa9 100644 --- a/graphs/energy/nodes/buildings/buildings_lighting_standard_fluorescent_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_lighting_standard_fluorescent_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.light = 0.16 - output.loss = elastic -- groups = [ - emissions, emissions_buildings, emissions_buildings_lighting, - application_group, lv_net_demand - ] +- groups = [direct_emissions, application_group, lv_net_demand] - free_co2_factor = 0.0 - merit_order.group = buildings_appliances - merit_order.level = lv - merit_order.type = consumer +- sector_label = buildings_lighting diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_coal.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_coal.converter.ad index 082707e2aa..b089b16eb5 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_coal.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.43 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - takes_part_in_ets = 0.0 - fever.share_in_group = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_collective_heatpump_water_water_ts_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_collective_heatpump_water_water_ts_electricity.converter.ad index 963f38a703..449d1bab70 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_collective_heatpump_water_water_ts_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_collective_heatpump_water_water_ts_electricity.converter.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - merit_order_csv_include, costs_building_and_installations_buildings, + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, merit_order_csv_include, costs_building_and_installations_buildings, lt_delivery_system_buildings - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_combined_hydrogen.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_combined_hydrogen.converter.ad index cc418f01db..d54bc2c6ac 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_combined_hydrogen.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_combined_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.086956522 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.1 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_crude_oil.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_crude_oil.converter.ad index 9a23bb7a4e..34f831cd2f 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_crude_oil.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.85 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.142 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_ht_steam_hot_water.ad b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_ht_steam_hot_water.ad index fd967079f2..a9b6441aec 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_ht_steam_hot_water.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_ht_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, application_group, aggregator_producer, wacc_proven_tech, + direct_emissions, demand_driven, application_group, aggregator_producer, wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_lt_steam_hot_water.ad b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_lt_steam_hot_water.ad index cc5c2a6a95..3a71ba1b62 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_lt_steam_hot_water.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_lt_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, application_group, aggregator_producer, wacc_proven_tech, + direct_emissions, demand_driven, application_group, aggregator_producer, wacc_proven_tech, costs_building_and_installations_buildings, lt_delivery_system_buildings - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_mt_steam_hot_water.ad b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_mt_steam_hot_water.ad index ff3402ff90..4970874ffa 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_mt_steam_hot_water.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_district_heating_mt_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, application_group, aggregator_producer, wacc_proven_tech, + direct_emissions, demand_driven, application_group, aggregator_producer, wacc_proven_tech, costs_building_and_installations_buildings, mt_delivery_system_buildings - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_electricity.converter.ad index 26e2b081fe..b4d34772c6 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_electricity.converter.ad @@ -1,11 +1,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - merit_order_csv_include, costs_building_and_installations_buildings, + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, merit_order_csv_include, costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 0.081 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_electricity.converter.ad index 62b7e56db0..cdc7c47a9f 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_electricity.converter.ad @@ -4,11 +4,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, lv_net_demand, - wacc_proven_tech, merit_order_csv_include, costs_building_and_installations_buildings, - ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + lv_net_demand, wacc_proven_tech, merit_order_csv_include, + costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -40,3 +39,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_network_gas.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_network_gas.converter.ad index 942893e2c6..8528608db2 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_network_gas.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_air_water_network_gas.converter.ad @@ -3,10 +3,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, lt_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, lt_delivery_system_buildings + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -32,3 +31,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_surface_water_water_ts_electricity.ad b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_surface_water_water_ts_electricity.ad index b609b62679..b13cf2aad9 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_surface_water_water_ts_electricity.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_heatpump_surface_water_water_ts_electricity.ad @@ -3,10 +3,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - merit_order_csv_include, costs_building_and_installations_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, merit_order_csv_include, costs_building_and_installations_buildings + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.011 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad index 79b158d7e2..04c65a2070 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad @@ -6,11 +6,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.crude_oil = 0.95 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - cost_heat_pumps, demand_driven, heat_production, application_group, aggregator_producer, - lv_net_demand, wacc_proven_tech, merit_order_csv_include, mt_delivery_system_buildings, - costs_building_and_installations_buildings - ] + direct_emissions, cost_heat_pumps, demand_driven, heat_production, application_group, + aggregator_producer, lv_net_demand, wacc_proven_tech, merit_order_csv_include, + mt_delivery_system_buildings, costs_building_and_installations_buildings + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -40,3 +39,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0122 - households_supplied_per_unit = 1.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_heatpump_air_water_electricity.converter.ad index 5ab7a18269..248f77cd4c 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_heatpump_air_water_electricity.converter.ad @@ -5,11 +5,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.network_gas = 1.07 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - cost_heat_pumps, demand_driven, heat_production, application_group, aggregator_producer, - lv_net_demand, wacc_proven_tech, merit_order_csv_include, mt_delivery_system_buildings, - costs_building_and_installations_buildings - ] + direct_emissions, cost_heat_pumps, demand_driven, heat_production, application_group, + aggregator_producer, lv_net_demand, wacc_proven_tech, merit_order_csv_include, + mt_delivery_system_buildings, costs_building_and_installations_buildings + ] - presentation_group = heat_pumps - fever.base_cop = 2.323 - fever.capacity.electricity = 0.0018327326043130307 @@ -42,6 +41,7 @@ - technical_lifetime = 15.0 - wacc = 0.02 - households_supplied_per_unit = 1.0 +- sector_label = buildings_space_heating ~ input.electricity = EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, electricity) ~ input.network_gas = EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, network_gas) diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad index 558fe80f8d..b0ace1e85a 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad @@ -7,11 +7,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.hydrogen = 1.08696 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - cost_heat_pumps, demand_driven, heat_production, application_group, aggregator_producer, - lv_net_demand, wacc_proven_tech, merit_order_csv_include, mt_delivery_system_buildings, - costs_building_and_installations_buildings - ] + direct_emissions, cost_heat_pumps, demand_driven, heat_production, application_group, + aggregator_producer, lv_net_demand, wacc_proven_tech, merit_order_csv_include, + mt_delivery_system_buildings, costs_building_and_installations_buildings + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -44,3 +43,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0049 - households_supplied_per_unit = 1.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_network_gas.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_network_gas.converter.ad index c4bb64780a..862e815b79 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_network_gas.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.067 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.043 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_solar_thermal.ad b/graphs/energy/nodes/buildings/buildings_space_heater_solar_thermal.ad index e577e927e0..576def380e 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_solar_thermal.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_solar_thermal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - heat_production, application_group, wacc_proven_tech, + direct_emissions, heat_production, application_group, wacc_proven_tech, costs_building_and_installations_buildings - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 0.0011 - land_use_per_unit = 1.62e-06 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/buildings/buildings_space_heater_wood_pellets.converter.ad b/graphs/energy/nodes/buildings/buildings_space_heater_wood_pellets.converter.ad index 0a4d8e50e7..dc8b5f06e9 100644 --- a/graphs/energy/nodes/buildings/buildings_space_heater_wood_pellets.converter.ad +++ b/graphs/energy/nodes/buildings/buildings_space_heater_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.82 - groups = [ - emissions, emissions_buildings, emissions_buildings_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_proven_tech, - costs_building_and_installations_buildings, ht_delivery_system_buildings - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_proven_tech, costs_building_and_installations_buildings, ht_delivery_system_buildings + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.137 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = buildings_space_heating diff --git a/graphs/energy/nodes/bunkers/bunkers_plane_using_electricity.ad b/graphs/energy/nodes/bunkers/bunkers_plane_using_electricity.ad index 6bd93f0dae..7e0bc3ffde 100644 --- a/graphs/energy/nodes/bunkers/bunkers_plane_using_electricity.ad +++ b/graphs/energy/nodes/bunkers/bunkers_plane_using_electricity.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_aviation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_aviation diff --git a/graphs/energy/nodes/bunkers/bunkers_plane_using_hydrogen.ad b/graphs/energy/nodes/bunkers/bunkers_plane_using_hydrogen.ad index 6bd93f0dae..7e0bc3ffde 100644 --- a/graphs/energy/nodes/bunkers/bunkers_plane_using_hydrogen.ad +++ b/graphs/energy/nodes/bunkers/bunkers_plane_using_hydrogen.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_aviation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_aviation diff --git a/graphs/energy/nodes/bunkers/bunkers_plane_using_kerosene_mix.ad b/graphs/energy/nodes/bunkers/bunkers_plane_using_kerosene_mix.ad index 6bd93f0dae..7e0bc3ffde 100644 --- a/graphs/energy/nodes/bunkers/bunkers_plane_using_kerosene_mix.ad +++ b/graphs/energy/nodes/bunkers/bunkers_plane_using_kerosene_mix.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_aviation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_aviation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_ammonia.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_ammonia.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_ammonia.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_ammonia.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_electricity.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_electricity.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_electricity.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_electricity.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_heavy_fuel_oil.converter.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_heavy_fuel_oil.converter.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_heavy_fuel_oil.converter.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_heavy_fuel_oil.converter.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_hydrogen.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_hydrogen.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_hydrogen.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_hydrogen.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_lng_mix.converter.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_lng_mix.converter.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_lng_mix.converter.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_lng_mix.converter.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/bunkers/bunkers_ship_using_methanol_mix.ad b/graphs/energy/nodes/bunkers/bunkers_ship_using_methanol_mix.ad index e6ea08dd61..6ec2d52af3 100644 --- a/graphs/energy/nodes/bunkers/bunkers_ship_using_methanol_mix.ad +++ b/graphs/energy/nodes/bunkers/bunkers_ship_using_methanol_mix.ad @@ -1,7 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_bunkers, - emissions_bunkers_international_navigation, - application_group, bunkers - ] +- groups = [direct_emissions, application_group, bunkers] - free_co2_factor = 0.0 +- sector_label = bunkers_international_navigation diff --git a/graphs/energy/nodes/energy/energy_biogas_fermentation_wet_biomass.converter.ad b/graphs/energy/nodes/energy/energy_biogas_fermentation_wet_biomass.converter.ad index 008e7ad135..e11c0c5912 100644 --- a/graphs/energy/nodes/energy/energy_biogas_fermentation_wet_biomass.converter.ad +++ b/graphs/energy/nodes/energy/energy_biogas_fermentation_wet_biomass.converter.ad @@ -1,10 +1,10 @@ - output.biogas = 0.54 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, wacc_proven_tech, costs_production_biomass, sankey_conversion_group - ] -- use = undefined + direct_emissions, bio_footprint_calculation, wacc_proven_tech, costs_production_biomass, + sankey_conversion_group + ] +- use = energetic - presentation_group = biomass - availability = 0.98 - typical_input_capacity = 8.3333 @@ -21,5 +21,6 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_fuels_production ~ full_load_hours = 8000 diff --git a/graphs/energy/nodes/energy/energy_blastfurnace_transformation_cokes.converter.ad b/graphs/energy/nodes/energy/energy_blastfurnace_transformation_cokes.converter.ad index 65bc4933d5..e1f58a355b 100644 --- a/graphs/energy/nodes/energy/energy_blastfurnace_transformation_cokes.converter.ad +++ b/graphs/energy/nodes/energy/energy_blastfurnace_transformation_cokes.converter.ad @@ -1,8 +1,9 @@ - output.loss = elastic -- groups = [emissions, emissions_energy, emissions_energy_steel, sankey_conversion_group] +- groups = [direct_emissions, sankey_conversion_group] - use = energetic - graph_methods = [input, output] - free_co2_factor = 0.0 +- sector_label = energy_steel ~ input.coal = EFFICIENCY(energy_blastfurnace_transformation_cokes, input, coal) ~ input.cokes = EFFICIENCY(energy_blastfurnace_transformation_cokes, input, cokes) diff --git a/graphs/energy/nodes/energy/energy_chemical_fertilizers_transformation_external_coupling_node.ad b/graphs/energy/nodes/energy/energy_chemical_fertilizers_transformation_external_coupling_node.ad index c1b1cbbe06..b6c74ce8f5 100644 --- a/graphs/energy/nodes/energy/energy_chemical_fertilizers_transformation_external_coupling_node.ad +++ b/graphs/energy/nodes/energy/energy_chemical_fertilizers_transformation_external_coupling_node.ad @@ -1,12 +1,11 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - preset_demand, sankey_conversion_group, industry_transformation, + direct_emissions, preset_demand, sankey_conversion_group, industry_transformation, non_final_electricity_demand_converters, methanol_production, hydrogen_production, biomass_products_production, natural_gas_production, ammonia_production, oil_and_oil_products_production - ] -- use = energetic + ] +- use = non_energetic - free_co2_factor = 0.0 - full_load_hours = 8760.0 - typical_input_capacity = 100.0 @@ -19,6 +18,7 @@ - network_gas.profile = industry_fertilizers_electricity - network_gas.type = transformation - network_gas.demand_carrier = [natural_gas, greengas] +- sector_label = industry_fertilizers ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_chemical_other_transformation_external_coupling_node.ad b/graphs/energy/nodes/energy/energy_chemical_other_transformation_external_coupling_node.ad index f801322ade..a12ad0a492 100644 --- a/graphs/energy/nodes/energy/energy_chemical_other_transformation_external_coupling_node.ad +++ b/graphs/energy/nodes/energy/energy_chemical_other_transformation_external_coupling_node.ad @@ -1,12 +1,11 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - preset_demand, sankey_conversion_group, industry_transformation, + direct_emissions, preset_demand, sankey_conversion_group, industry_transformation, non_final_electricity_demand_converters, methanol_production, hydrogen_production, biomass_products_production, natural_gas_production, ammonia_production, oil_and_oil_products_production - ] -- use = energetic + ] +- use = non_energetic - free_co2_factor = 0.0 - full_load_hours = 8760.0 - typical_input_capacity = 100.0 @@ -19,6 +18,7 @@ - network_gas.profile = industry_chemicals_electricity - network_gas.type = transformation - network_gas.demand_carrier = [natural_gas, greengas] +- sector_label = industry_chemicals ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_chemical_refineries_transformation_external_coupling_node.ad b/graphs/energy/nodes/energy/energy_chemical_refineries_transformation_external_coupling_node.ad index 1c35b8548c..d85724e928 100644 --- a/graphs/energy/nodes/energy/energy_chemical_refineries_transformation_external_coupling_node.ad +++ b/graphs/energy/nodes/energy/energy_chemical_refineries_transformation_external_coupling_node.ad @@ -1,12 +1,11 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - preset_demand, sankey_conversion_group, industry_transformation, + direct_emissions, preset_demand, sankey_conversion_group, industry_transformation, non_final_electricity_demand_converters, methanol_production, hydrogen_production, biomass_products_production, natural_gas_production, ammonia_production, oil_and_oil_products_production - ] -- use = energetic + ] +- use = non_energetic - free_co2_factor = 0.0 - full_load_hours = 8760.0 - typical_input_capacity = 100.0 @@ -19,6 +18,7 @@ - network_gas.profile = industry_refineries_electricity - network_gas.type = transformation - network_gas.demand_carrier = [natural_gas, greengas] +- sector_label = industry_refineries ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_chp_coal_gas.ad b/graphs/energy/nodes/energy/energy_chp_coal_gas.ad index b32dd33dd1..4b663993a2 100644 --- a/graphs/energy/nodes/energy/energy_chp_coal_gas.ad +++ b/graphs/energy/nodes/energy/energy_chp_coal_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - must_run_electricity_production, central_production, electricity_production, heat_production, - costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, must_run_electricity_production, central_production, electricity_production, + heat_production, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - graph_methods = [output, full_load_hours] - availability = 0.9 @@ -24,6 +23,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ output.electricity = CENTRAL_PRODUCTION(industry_chp_coal_gas, electricity_output_conversion) ~ output.steam_hot_water = CENTRAL_PRODUCTION(industry_chp_coal_gas, steam_hot_water_output_conversion) diff --git a/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_hydrogen.ad b/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_hydrogen.ad new file mode 100644 index 0000000000..2414cc796f --- /dev/null +++ b/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_hydrogen.ad @@ -0,0 +1,39 @@ +- output.loss = elastic +- groups = [ + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, + heat_production, hv_net_supply, wacc_unproven_tech, primary_heat_infrastructure, + costs_production_chp_plants, sankey_conversion_group + ] +- use = energetic +- presentation_group = chps +- graph_methods = [output] +- waste_outputs = [steam_hot_water] +- availability = 0.9 +- typical_input_capacity = 260.9 +- ccs_investment = 0.0 +- construction_time = 2.5 +- cost_of_installing = 0.0 +- decommissioning_costs = 0.0 +- fixed_operation_and_maintenance_costs_per_year = 1095652.17 +- initial_investment = 144900000.0 +- technical_lifetime = 30.0 +- variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 +- variable_operation_and_maintenance_costs_per_full_load_hour = 328.7 +- wacc = 0.07 +- heat_network_ht.group = self: electricity_output_curve +- heat_network_ht.subtype = must_run +- heat_network_ht.type = producer +- merit_order.level = hv +- merit_order.subtype = dispatchable +- merit_order.type = producer +- hydrogen.group = self: electricity_output_curve +- hydrogen.type = consumer +- hydrogen.subtype = generic +- free_co2_factor = 0.0 +- takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production + +~ demand = 0.0 +~ full_load_hours = 4500.0 +~ output.electricity = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, electricity_output_conversion) +~ output.steam_hot_water = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, steam_hot_water_output_conversion) diff --git a/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_network_gas.ad b/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_network_gas.ad index ee7a16fc13..ed230bab98 100644 --- a/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_chp_combined_cycle_ht_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -31,6 +30,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_hydrogen.ad b/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_hydrogen.ad new file mode 100644 index 0000000000..93d0d135b2 --- /dev/null +++ b/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_hydrogen.ad @@ -0,0 +1,39 @@ +- output.loss = elastic +- groups = [ + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, + heat_production, hv_net_supply, wacc_unproven_tech, primary_heat_infrastructure, + costs_production_chp_plants, sankey_conversion_group + ] +- use = energetic +- presentation_group = chps +- graph_methods = [output] +- waste_outputs = [steam_hot_water] +- availability = 0.9 +- typical_input_capacity = 260.9 +- ccs_investment = 0.0 +- construction_time = 2.5 +- cost_of_installing = 0.0 +- decommissioning_costs = 0.0 +- fixed_operation_and_maintenance_costs_per_year = 1095652.17 +- initial_investment = 144900000.0 +- technical_lifetime = 30.0 +- variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 +- variable_operation_and_maintenance_costs_per_full_load_hour = 328.7 +- wacc = 0.07 +- heat_network_mt.group = self: electricity_output_curve +- heat_network_mt.subtype = must_run +- heat_network_mt.type = producer +- merit_order.level = hv +- merit_order.subtype = dispatchable +- merit_order.type = producer +- hydrogen.group = self: electricity_output_curve +- hydrogen.type = consumer +- hydrogen.subtype = generic +- free_co2_factor = 0.0 +- takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production + +~ demand = 0.0 +~ full_load_hours = 4500.0 +~ output.electricity = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, electricity_output_conversion) +~ output.steam_hot_water = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, steam_hot_water_output_conversion) diff --git a/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_network_gas.ad b/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_network_gas.ad index 41b50ebeda..1a4c0c4e01 100644 --- a/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_chp_combined_cycle_mt_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -32,6 +31,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_combined_cycle_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_engine_ht_biogas.ad b/graphs/energy/nodes/energy/energy_chp_local_engine_ht_biogas.ad index 96d26a7c80..3e992e6a65 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_engine_ht_biogas.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_engine_ht_biogas.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, must_run_electricity_production, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, heat_production, + must_run_electricity_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_local_engine_biogas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_engine_biogas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_engine_ht_network_gas.ad b/graphs/energy/nodes/energy/energy_chp_local_engine_ht_network_gas.ad index 01e2c6d0d8..c4880a1597 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_engine_ht_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_engine_ht_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, dispatchable_production, + direct_emissions, preset_demand, electricity_production, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -29,6 +28,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_local_engine_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_engine_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_engine_mt_biogas.ad b/graphs/energy/nodes/energy/energy_chp_local_engine_mt_biogas.ad index 3b63bcf338..b0add01780 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_engine_mt_biogas.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_engine_mt_biogas.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, must_run_electricity_production, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, heat_production, + must_run_electricity_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_engine_biogas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_engine_mt_network_gas.ad b/graphs/energy/nodes/energy/energy_chp_local_engine_mt_network_gas.ad index 85024e0895..0f56e3b047 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_engine_mt_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_engine_mt_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, heat_production, dispatchable_production, + direct_emissions, preset_demand, electricity_production, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -29,6 +28,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_engine_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_dispatchable.ad b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_dispatchable.ad index d830336202..6b4a09b51f 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_dispatchable.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, heat_production, + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, heat_production, dispatchable_production, wacc_unproven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - graph_methods = [full_load_hours, output] @@ -30,6 +29,7 @@ - free_co2_factor = 0.85 - ccs_capture_rate = 0.85 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_must_run.ad b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_must_run.ad index 57b9da5053..a2477068fb 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_must_run.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_ccs_must_run.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, must_run_electricity_production, - heat_production, wacc_unproven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, + must_run_electricity_production, heat_production, wacc_unproven_tech, + costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = electricity_production_ccs - graph_methods = [full_load_hours, output] @@ -30,6 +30,7 @@ - free_co2_factor = 0.85 - ccs_capture_rate = 0.85 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_dispatchable.ad b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_dispatchable.ad index d5a09aed95..0c08506c23 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_dispatchable.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, heat_production, + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +27,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_must_run.ad b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_must_run.ad index 8d2a6ab1d9..61b655afb2 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_must_run.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_ht_wood_pellets_must_run.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, must_run_electricity_production, - heat_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, + must_run_electricity_production, heat_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [full_load_hours, output] @@ -29,6 +29,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_dispatchable.ad b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_dispatchable.ad index b8a638137f..123a62b777 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_dispatchable.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, heat_production, + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, heat_production, dispatchable_production, wacc_unproven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - graph_methods = [full_load_hours, output] @@ -30,6 +29,7 @@ - free_co2_factor = 0.85 - ccs_capture_rate = 0.85 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_must_run.ad b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_must_run.ad index d34274068c..e405823e37 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_must_run.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_ccs_must_run.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, must_run_electricity_production, - heat_production, wacc_unproven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, + must_run_electricity_production, heat_production, wacc_unproven_tech, + costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = electricity_production_ccs - graph_methods = [full_load_hours, output] @@ -30,6 +30,7 @@ - free_co2_factor = 0.85 - ccs_capture_rate = 0.85 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_dispatchable.ad b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_dispatchable.ad index 1f01b31606..d264c0f1db 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_dispatchable.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, heat_production, + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, heat_production, dispatchable_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -28,6 +27,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_must_run.ad b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_must_run.ad index 9348e51b1d..7bde619169 100644 --- a/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_must_run.ad +++ b/graphs/energy/nodes/energy/energy_chp_local_mt_wood_pellets_must_run.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, electricity_production, ccs_technology_pair, must_run_electricity_production, - heat_production, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, ccs_technology_pair, + must_run_electricity_production, heat_production, wacc_proven_tech, costs_production_chp_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [full_load_hours, output] @@ -29,6 +29,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_local_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix.ad b/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix.ad index 8450d52a58..e3f9d3bfb5 100644 --- a/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - waste_outputs = [steam_hot_water] @@ -29,6 +28,7 @@ - free_co2_factor = 0.85 - ccs_capture_rate = 0.85 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix.ad b/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix.ad index 82925f7d4f..3fa88acce4 100644 --- a/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, ccs_technology_pair, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - waste_outputs = [steam_hot_water] @@ -31,6 +30,7 @@ - households_supplied_per_unit = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_supercritical_ht_waste_mix.ad b/graphs/energy/nodes/energy/energy_chp_supercritical_ht_waste_mix.ad index 8c9d1696b9..3542cdbe18 100644 --- a/graphs/energy/nodes/energy/energy_chp_supercritical_ht_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_chp_supercritical_ht_waste_mix.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -29,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_supercritical_waste_mix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_supercritical_mt_waste_mix.ad b/graphs/energy/nodes/energy/energy_chp_supercritical_mt_waste_mix.ad index 90c3644fd5..851d18efcc 100644 --- a/graphs/energy/nodes/energy/energy_chp_supercritical_mt_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_chp_supercritical_mt_waste_mix.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, full_load_hours, output] @@ -30,6 +29,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_ht_coal.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_ht_coal.ad index d299bcaa15..0f77d7cd10 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_ht_coal.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_ht_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -29,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_cofiring_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_cofiring_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_mt_coal.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_mt_coal.ad index 0eeb703324..9166861b5e 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_mt_coal.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_cofiring_mt_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -30,6 +29,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_cofiring_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_coal.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_coal.ad index 4158083062..27c208dc3b 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_coal.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -29,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_lignite.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_lignite.ad index 57a3a9daab..e9d75d4a70 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_lignite.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_ht_lignite.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = chps - graph_methods = [output, full_load_hours, demand] - waste_outputs = [steam_hot_water] @@ -29,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_lignite, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_lignite, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_coal.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_coal.ad index 7b4c0bf462..db4e83b967 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_coal.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -30,6 +29,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_lignite.ad b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_lignite.ad index b001a2bdc6..1e005ba26b 100644 --- a/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_lignite.ad +++ b/graphs/energy/nodes/energy/energy_chp_ultra_supercritical_mt_lignite.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, heat_production, hv_net_supply, wacc_proven_tech, primary_heat_infrastructure, costs_production_chp_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = chps - graph_methods = [output, full_load_hours, demand] - waste_outputs = [steam_hot_water] @@ -30,6 +29,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_chp_ultra_supercritical_lignite, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_cokesoven_transformation_coal.converter.ad b/graphs/energy/nodes/energy/energy_cokesoven_transformation_coal.converter.ad index 566ecc198e..cb31569b76 100644 --- a/graphs/energy/nodes/energy/energy_cokesoven_transformation_coal.converter.ad +++ b/graphs/energy/nodes/energy/energy_cokesoven_transformation_coal.converter.ad @@ -1,8 +1,9 @@ - output.loss = elastic -- groups = [emissions, emissions_energy, emissions_energy_steel, sankey_conversion_group] +- groups = [direct_emissions, sankey_conversion_group] - use = energetic - graph_methods = [output] - free_co2_factor = 0.0 +- sector_label = energy_steel ~ output.coal_gas = EFFICIENCY(energy_cokesoven_transformation_coal, output, coal_gas) ~ output.cokes = EFFICIENCY(energy_cokesoven_transformation_coal, output, cokes) diff --git a/graphs/energy/nodes/energy/energy_compressor_network_gas.ad b/graphs/energy/nodes/energy/energy_compressor_network_gas.ad index 839ed3dd42..43c3d05929 100644 --- a/graphs/energy/nodes/energy/energy_compressor_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_compressor_network_gas.ad @@ -3,11 +3,10 @@ - output.compressed_network_gas = 0.931 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - non_final_electricity_demand_converters, mv_net_demand, wacc_proven_tech, + direct_emissions, non_final_electricity_demand_converters, mv_net_demand, wacc_proven_tech, costs_production_other, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - availability = 0.99 - full_load_hours = 6570.0 - typical_input_capacity = 8.96766214724852 @@ -29,3 +28,4 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_greengas_gasification_dry_biomass.ad b/graphs/energy/nodes/energy/energy_greengas_gasification_dry_biomass.ad index e0edb4c76c..7af5faa60b 100644 --- a/graphs/energy/nodes/energy/energy_greengas_gasification_dry_biomass.ad +++ b/graphs/energy/nodes/energy/energy_greengas_gasification_dry_biomass.ad @@ -1,10 +1,10 @@ - output.greengas = 0.602 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, wacc_proven_tech, costs_production_biomass, sankey_conversion_group - ] -- use = undefined + direct_emissions, bio_footprint_calculation, wacc_proven_tech, costs_production_biomass, + sankey_conversion_group + ] +- use = energetic - presentation_group = biomass - availability = 0.9 - typical_input_capacity = 70.0 @@ -24,5 +24,6 @@ - network_gas.demand_carrier = greengas - network_gas.profile = flat - network_gas.type = producer +- sector_label = energy_fuels_production ~ full_load_hours = 8000 diff --git a/graphs/energy/nodes/energy/energy_greengas_gasification_wet_biomass.ad b/graphs/energy/nodes/energy/energy_greengas_gasification_wet_biomass.ad index 5fbd5a5fec..3b2167ede5 100644 --- a/graphs/energy/nodes/energy/energy_greengas_gasification_wet_biomass.ad +++ b/graphs/energy/nodes/energy/energy_greengas_gasification_wet_biomass.ad @@ -1,11 +1,10 @@ - output.greengas = 0.68 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, wacc_unproven_tech, costs_production_biomass, + direct_emissions, bio_footprint_calculation, wacc_unproven_tech, costs_production_biomass, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = biomass - availability = 0.9 - typical_input_capacity = 20.0 @@ -25,5 +24,6 @@ - network_gas.demand_carrier = greengas - network_gas.profile = flat - network_gas.type = producer +- sector_label = energy_fuels_production ~ full_load_hours = 8000 diff --git a/graphs/energy/nodes/energy/energy_greengas_upgrade_biogas.converter.ad b/graphs/energy/nodes/energy/energy_greengas_upgrade_biogas.converter.ad index 942fc57586..70b1632b9c 100644 --- a/graphs/energy/nodes/energy/energy_greengas_upgrade_biogas.converter.ad +++ b/graphs/energy/nodes/energy/energy_greengas_upgrade_biogas.converter.ad @@ -1,11 +1,8 @@ - input.biogas = 1.0 - output.greengas = 0.995 - output.loss = elastic -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - wacc_proven_tech, costs_production_biomass, sankey_conversion_group - ] -- use = undefined +- groups = [direct_emissions, wacc_proven_tech, costs_production_biomass, sankey_conversion_group] +- use = energetic - availability = 0.98 - typical_input_capacity = 4.74 - ccs_investment = 0.0 @@ -24,5 +21,6 @@ - network_gas.demand_carrier = greengas - network_gas.profile = flat - network_gas.type = producer +- sector_label = energy_fuels_production ~ full_load_hours = 8000 diff --git a/graphs/energy/nodes/energy/energy_heat_backup_burner_ht_network_gas.ad b/graphs/energy/nodes/energy/energy_heat_backup_burner_ht_network_gas.ad index 25c1e73e63..db1c60566d 100644 --- a/graphs/energy/nodes/energy/energy_heat_backup_burner_ht_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_heat_backup_burner_ht_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 1.03 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.98 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production diff --git a/graphs/energy/nodes/energy/energy_heat_backup_burner_lt_network_gas.ad b/graphs/energy/nodes/energy/energy_heat_backup_burner_lt_network_gas.ad index c49f10f276..59e99a4b0f 100644 --- a/graphs/energy/nodes/energy/energy_heat_backup_burner_lt_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_heat_backup_burner_lt_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 1.03 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.98 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production diff --git a/graphs/energy/nodes/energy/energy_heat_backup_burner_mt_network_gas.ad b/graphs/energy/nodes/energy/energy_heat_backup_burner_mt_network_gas.ad index 94062c5514..536c74e35f 100644 --- a/graphs/energy/nodes/energy/energy_heat_backup_burner_mt_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_heat_backup_burner_mt_network_gas.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 1.03 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.98 @@ -27,3 +26,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production diff --git a/graphs/energy/nodes/energy/energy_heat_boiler_ht_electricity.ad b/graphs/energy/nodes/energy/energy_heat_boiler_ht_electricity.ad index 10122d2f16..c5135fc91f 100644 --- a/graphs/energy/nodes/energy/energy_heat_boiler_ht_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_boiler_ht_electricity.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -29,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 50.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ output.steam_hot_water = 0.995 diff --git a/graphs/energy/nodes/energy/energy_heat_boiler_lt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_boiler_lt_electricity.ad index a635228572..42bebd1dc7 100644 --- a/graphs/energy/nodes/energy/energy_heat_boiler_lt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_boiler_lt_electricity.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -29,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 50.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ output.steam_hot_water = 0.995 diff --git a/graphs/energy/nodes/energy/energy_heat_boiler_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_boiler_mt_electricity.ad index 3cce777951..db65c8289b 100644 --- a/graphs/energy/nodes/energy/energy_heat_boiler_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_boiler_mt_electricity.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -29,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 50.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ output.steam_hot_water = 0.995 diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_coal.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_coal.ad index b57021d3a8..56740dddd6 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_coal.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_coal.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_burner_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_crude_oil.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_crude_oil.ad index 265f50c97a..48b6496654 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_crude_oil.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_crude_oil.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, primary_heat_infrastructure, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_burner_crude_oil, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_crude_oil, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_hydrogen.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_hydrogen.ad index 6cffa25d06..62878dc32a 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_hydrogen.ad @@ -2,10 +2,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, preset_demand, wacc_proven_tech, + direct_emissions, heat_production, central_production, preset_demand, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -29,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_hydrogen, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_network_gas.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_network_gas.ad index 50053f12a6..27708ece8b 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, wacc_proven_tech, + direct_emissions, preset_demand, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -26,6 +25,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_burner_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_waste_mix.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_waste_mix.ad index 4019dea5a4..26aa14942b 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_waste_mix.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, primary_heat_infrastructure, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 36.6 - land_use_per_unit = 0.0201 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_burner_waste_mix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_ht_wood_pellets.ad b/graphs/energy/nodes/energy/energy_heat_burner_ht_wood_pellets.ad index 7a659f33d4..439ceb3f09 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_ht_wood_pellets.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_ht_wood_pellets.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -24,6 +23,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 16.7 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_burner_wood_pellets, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_lt_hydrogen.ad b/graphs/energy/nodes/energy/energy_heat_burner_lt_hydrogen.ad index 544fb4e612..d88f118d98 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_lt_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_lt_hydrogen.ad @@ -2,10 +2,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, preset_demand, wacc_proven_tech, + direct_emissions, heat_production, central_production, preset_demand, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -29,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_hydrogen, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_coal.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_coal.ad index c384d8c8c2..f33b7e96fa 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_coal.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_coal.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_crude_oil.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_crude_oil.ad index f711c08a9e..2e5726d588 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_crude_oil.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_crude_oil.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, primary_heat_infrastructure, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_crude_oil, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_hydrogen.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_hydrogen.ad index c91ba33ec6..caae416bfb 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_hydrogen.ad @@ -2,10 +2,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, preset_demand, wacc_proven_tech, + direct_emissions, heat_production, central_production, preset_demand, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output] @@ -30,6 +29,7 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.005 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_hydrogen, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_network_gas.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_network_gas.ad index ca7ea4ed64..1171511dbf 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, wacc_proven_tech, + direct_emissions, preset_demand, heat_production, central_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -27,6 +26,7 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.005 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_waste_mix.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_waste_mix.ad index 1c1d38748b..f01809ea35 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_waste_mix.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, primary_heat_infrastructure, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 36.6 - land_use_per_unit = 0.0201 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_burner_mt_wood_pellets.ad b/graphs/energy/nodes/energy/energy_heat_burner_mt_wood_pellets.ad index 49781f403e..e211715190 100644 --- a/graphs/energy/nodes/energy/energy_heat_burner_mt_wood_pellets.ad +++ b/graphs/energy/nodes/energy/energy_heat_burner_mt_wood_pellets.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, heat_production, wacc_proven_tech, + direct_emissions, preset_demand, central_production, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - heat_output_capacity = 16.7 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_burner_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_ht_electricity.ad b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_ht_electricity.ad index 8065e0e517..ab96dbfed6 100644 --- a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_ht_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_ht_electricity.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.995 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, mv_net_flexibility, p2h, wacc_proven_tech, + direct_emissions, heat_production, central_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h, sankey_conversion_group - ] + ] - use = energetic - presentation_group = p2h - availability = 1.0 @@ -35,5 +34,6 @@ - heat_output_capacity = 50.0 - takes_part_in_ets = 0.0 - max_consumption_price = 19.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_mt_electricity.ad index 584f4ac86b..e109fea596 100644 --- a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_boiler_mt_electricity.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.995 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, mv_net_flexibility, p2h, wacc_proven_tech, + direct_emissions, heat_production, central_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h, sankey_conversion_group - ] + ] - use = energetic - presentation_group = p2h - availability = 1.0 @@ -35,5 +34,6 @@ - heat_output_capacity = 50.0 - takes_part_in_ets = 0.0 - max_consumption_price = 19.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_ht_electricity.ad b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_ht_electricity.ad index af1c4f4351..d648008b33 100644 --- a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_ht_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_ht_electricity.ad @@ -2,10 +2,9 @@ - input.electricity = 0.2222222222222222 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, mv_net_flexibility, p2h, central_production, wacc_proven_tech, + direct_emissions, heat_production, mv_net_flexibility, p2h, central_production, wacc_proven_tech, costs_storage_and_conversion_p2h, sankey_conversion_group - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -35,5 +34,6 @@ - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 - max_consumption_price = 20.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_mt_electricity.ad index 215b8b702d..c20e2f3e9e 100644 --- a/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_flexibility_p2h_heatpump_mt_electricity.ad @@ -2,10 +2,9 @@ - input.electricity = 0.2222222222222222 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, mv_net_flexibility, p2h, central_production, wacc_proven_tech, + direct_emissions, heat_production, mv_net_flexibility, p2h, central_production, wacc_proven_tech, costs_storage_and_conversion_p2h, sankey_conversion_group - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -35,5 +34,6 @@ - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 - max_consumption_price = 20.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_lt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_lt_electricity.ad index 1b2a889547..327be52271 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_lt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_lt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.27 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 3.1 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_mt_electricity.ad index 1b0fb46fde..4d67dd0b98 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_drink_water_water_ts_mt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.385 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 3.1 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_lt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_lt_electricity.ad index afedfee014..b71f351c32 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_lt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_lt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.286 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 5.7 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_mt_electricity.ad index e574de8b68..3ee0cefebe 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_surface_water_water_ts_mt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.37 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 1.4 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_lt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_lt_electricity.ad index 1b2a889547..327be52271 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_lt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_lt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.27 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 3.1 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_mt_electricity.ad index 1b0fb46fde..4d67dd0b98 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_waste_water_water_ts_mt_electricity.ad @@ -2,10 +2,10 @@ - input.electricity = 0.385 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - availability = 1.0 @@ -30,5 +30,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 3.1 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_ht_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_ht_electricity.ad index ad6824814f..b973ccd325 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_ht_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_ht_electricity.ad @@ -2,10 +2,9 @@ - input.electricity = 0.2222222222222222 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand, full_load_hours] @@ -31,6 +30,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_heat_heatpump_water_water_electricity, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_heatpump_water_water_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_lt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_lt_electricity.ad index cff5f498c9..89a8608fb5 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_lt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_lt_electricity.ad @@ -2,10 +2,9 @@ - input.electricity = 0.2222222222222222 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand, full_load_hours] @@ -31,6 +30,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_heatpump_water_water_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_mt_electricity.ad b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_mt_electricity.ad index da71bceebc..7dfdee2844 100644 --- a/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_mt_electricity.ad +++ b/graphs/energy/nodes/energy/energy_heat_heatpump_water_water_mt_electricity.ad @@ -2,10 +2,9 @@ - input.electricity = 0.2222222222222222 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - heat_production, central_production, non_final_electricity_demand_converters, wacc_proven_tech, - preset_demand, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, central_production, non_final_electricity_demand_converters, + wacc_proven_tech, preset_demand, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand, full_load_hours] @@ -31,6 +30,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_heatpump_water_water_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_solar_ht_solar_thermal.ad b/graphs/energy/nodes/energy/energy_heat_solar_ht_solar_thermal.ad index 479706d2ad..57ef61fc00 100644 --- a/graphs/energy/nodes/energy/energy_heat_solar_ht_solar_thermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_solar_ht_solar_thermal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.6 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, primary_energy_demand, wacc_proven_tech, - costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, primary_energy_demand, + wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, full_load_hours] @@ -27,6 +26,7 @@ - land_use_per_unit = 0.0547 - sustainability_share = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_solar_thermal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_solar_lt_solar_thermal.ad b/graphs/energy/nodes/energy/energy_heat_solar_lt_solar_thermal.ad index e8e91eab04..410e7707f3 100644 --- a/graphs/energy/nodes/energy/energy_heat_solar_lt_solar_thermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_solar_lt_solar_thermal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.6 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, primary_energy_demand, wacc_proven_tech, - costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, primary_energy_demand, + wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, full_load_hours] @@ -27,6 +26,7 @@ - land_use_per_unit = 0.0547 - sustainability_share = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_solar_thermal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_solar_mt_solar_thermal.ad b/graphs/energy/nodes/energy/energy_heat_solar_mt_solar_thermal.ad index c2467ba49d..37e39dcfae 100644 --- a/graphs/energy/nodes/energy/energy_heat_solar_mt_solar_thermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_solar_mt_solar_thermal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.6 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, primary_energy_demand, wacc_proven_tech, - costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, primary_energy_demand, + wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, full_load_hours] @@ -27,6 +26,7 @@ - land_use_per_unit = 0.0547 - sustainability_share = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_heat_solar_thermal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_heat_well_deep_ht_geothermal.ad b/graphs/energy/nodes/energy/energy_heat_well_deep_ht_geothermal.ad index d304c805a6..66310a93e7 100644 --- a/graphs/energy/nodes/energy/energy_heat_well_deep_ht_geothermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_well_deep_ht_geothermal.ad @@ -2,10 +2,10 @@ - input.geothermal = 0.95 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand] @@ -32,6 +32,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 15.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = EB(commercial_and_public_services, geothermal) + diff --git a/graphs/energy/nodes/energy/energy_heat_well_deep_mt_geothermal.ad b/graphs/energy/nodes/energy/energy_heat_well_deep_mt_geothermal.ad index fb76533842..ed89b81bcf 100644 --- a/graphs/energy/nodes/energy/energy_heat_well_deep_mt_geothermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_well_deep_mt_geothermal.ad @@ -2,10 +2,10 @@ - input.geothermal = 0.95 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand] @@ -32,5 +32,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 15.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_well_shallow_heatpump_mt_geothermal.ad b/graphs/energy/nodes/energy/energy_heat_well_shallow_heatpump_mt_geothermal.ad index d26f50ad96..25bdede29b 100644 --- a/graphs/energy/nodes/energy/energy_heat_well_shallow_heatpump_mt_geothermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_well_shallow_heatpump_mt_geothermal.ad @@ -2,10 +2,10 @@ - input.geothermal = 0.79 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand] @@ -32,5 +32,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 8.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_heat_well_shallow_lt_geothermal.ad b/graphs/energy/nodes/energy/energy_heat_well_shallow_lt_geothermal.ad index 934f29b593..6a5e881b45 100644 --- a/graphs/energy/nodes/energy/energy_heat_well_shallow_lt_geothermal.ad +++ b/graphs/energy/nodes/energy/energy_heat_well_shallow_lt_geothermal.ad @@ -2,10 +2,10 @@ - input.geothermal = 0.95 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, heat_production, central_production, non_final_electricity_demand_converters, - wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, central_production, + non_final_electricity_demand_converters, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand] @@ -32,5 +32,6 @@ - free_co2_factor = 0.0 - heat_output_capacity = 8.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_dispatchable.ad b/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_dispatchable.ad index 6d4cb1e2b0..7a7f3f76b9 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_dispatchable.ad @@ -2,11 +2,10 @@ - output.hydrogen = 0.685 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_unproven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 7884.0 @@ -25,5 +24,6 @@ - hydrogen.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_must_run.ad b/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_must_run.ad index 4bbf55c9ea..730822b5c8 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_must_run.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_ammonia_reformer_must_run.ad @@ -2,11 +2,10 @@ - output.hydrogen = 0.685 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_unproven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 7884.0 @@ -26,5 +25,6 @@ - hydrogen.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run.ad b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run.ad index b385ae0891..4c1b39d8e0 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.7107843137254902 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_unproven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8030.0 @@ -31,5 +30,6 @@ - free_co2_factor = 0.96 - ccs_capture_rate = 0.96 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_dispatchable.ad b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_dispatchable.ad index eece5a0d25..9a480ad9bf 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_dispatchable.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.7531132230050795 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_proven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8030.0 @@ -29,5 +28,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_must_run.ad b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_must_run.ad index 18e1754fe7..b93319c0c8 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_must_run.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_autothermal_reformer_must_run.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.7531132230050795 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_proven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_proven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8030.0 @@ -30,5 +29,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification.ad b/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification.ad index c5fbd6e8ea..7694daded0 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.461 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_unproven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 0.9 - full_load_hours = 7884.0 @@ -30,5 +29,6 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.20234300000000002 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification_ccs.ad b/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification_ccs.ad index 20d9c0c639..2d14683713 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification_ccs.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_biomass_gasification_ccs.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.44799999999999995 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_unproven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 0.9 - full_load_hours = 7884.0 @@ -31,5 +30,6 @@ - ccs_capture_rate = 0.9 - land_use_per_unit = 0.20234300000000002 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_solar_electricity.ad b/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_solar_electricity.ad index 9b8f9bcaff..8c995c4ce8 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_solar_electricity.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_solar_electricity.ad @@ -2,11 +2,10 @@ - output.hydrogen = 0.66 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group, preset_demand - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_unproven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group, preset_demand + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - typical_input_capacity = 10.0 @@ -26,6 +25,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.0238144 - takes_part_in_ets = 0.0 +- sector_label = energy_hydrogen_production ~ demand = CENTRAL_PRODUCTION(energy_hydrogen_electrolysis_solar_electricity, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_hydrogen_electrolysis_solar_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_wind_electricity.ad b/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_wind_electricity.ad index 302dd0b74a..e29ed2eb3f 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_wind_electricity.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_electrolysis_wind_electricity.ad @@ -2,11 +2,10 @@ - output.hydrogen = 0.66 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group, preset_demand - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_unproven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group, preset_demand + ] +- use = non_energetic - graph_methods = [full_load_hours] - presentation_group = hydrogen_production - availability = 1.0 @@ -27,6 +26,7 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.0238144 - takes_part_in_ets = 0.0 +- sector_label = energy_hydrogen_production ~ demand = CENTRAL_PRODUCTION(energy_hydrogen_electrolysis_wind_electricity, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_hydrogen_electrolysis_wind_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_hydrogen_flexibility_p2g_electricity.ad b/graphs/energy/nodes/energy/energy_hydrogen_flexibility_p2g_electricity.ad index fa938924e2..194cecd209 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_flexibility_p2g_electricity.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_flexibility_p2g_electricity.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.residual_heat = 0.195 - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hv_net_flexibility, hydrogen_production, p2g, - wacc_unproven_tech, costs_storage_and_conversion_electrolysis, sankey_conversion_group - ] -- use = undefined + direct_emissions, hv_net_flexibility, hydrogen_production, p2g, wacc_unproven_tech, + costs_storage_and_conversion_electrolysis, sankey_conversion_group + ] +- use = non_energetic - presentation_group = p2g - availability = 0.9800228310502284 - full_load_hours = 0.0 @@ -31,5 +30,6 @@ - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 - max_consumption_price = 30.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_hybrid_electrolysis_wind_electricity.ad b/graphs/energy/nodes/energy/energy_hydrogen_hybrid_electrolysis_wind_electricity.ad index aba749b613..991f52070b 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_hybrid_electrolysis_wind_electricity.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_hybrid_electrolysis_wind_electricity.ad @@ -2,11 +2,10 @@ - output.hydrogen = 0.66 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_unproven_tech, costs_storage_and_conversion_electrolysis, + direct_emissions, hydrogen_production, wacc_unproven_tech, costs_storage_and_conversion_electrolysis, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 0.98 - typical_input_capacity = 10.0 @@ -30,6 +29,7 @@ - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 - max_consumption_price = 30.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_hydrogen_electrolysis_wind_electricity, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_hydrogen_liquid_hydrogen_regasifier.ad b/graphs/energy/nodes/energy/energy_hydrogen_liquid_hydrogen_regasifier.ad index 61f6262c92..cc2509cf91 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_liquid_hydrogen_regasifier.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_liquid_hydrogen_regasifier.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.986 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_proven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 7884.0 @@ -27,5 +26,6 @@ - hydrogen.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_lohc_reformer.ad b/graphs/energy/nodes/energy/energy_hydrogen_lohc_reformer.ad index c9bdd8ca2b..abef68f5df 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_lohc_reformer.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_lohc_reformer.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.694 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_proven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 7884.0 @@ -27,5 +26,6 @@ - hydrogen.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_solar_pv_solar_radiation.ad b/graphs/energy/nodes/energy/energy_hydrogen_solar_pv_solar_radiation.ad index 059dbf8706..f87531b89d 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_solar_pv_solar_radiation.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_solar_pv_solar_radiation.ad @@ -1,11 +1,10 @@ - output.electricity = 0.17 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - primary_energy_demand, sustainable_production, wacc_proven_tech, + direct_emissions, primary_energy_demand, sustainable_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, preset_demand - ] -- use = energetic + ] +- use = non_energetic - graph_methods = [full_load_hours] - availability = 1.0 - ccs_investment = 0.0 @@ -24,6 +23,7 @@ - land_use_per_unit = 0.2 - sustainability_share = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_hydrogen_production ~ demand = CENTRAL_PRODUCTION(energy_hydrogen_solar_pv_solar_radiation, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_hydrogen_solar_pv_solar_radiation, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run.ad b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run.ad index 473414756f..db7db144e4 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.745449777078416 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_unproven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_unproven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8322.0 @@ -31,5 +30,6 @@ - free_co2_factor = 0.669 - ccs_capture_rate = 0.669 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_dispatchable.ad b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_dispatchable.ad index e3e19ebd4d..1e1ab9ec82 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_dispatchable.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.8130081300813008 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, - sankey_conversion_group - ] -- use = undefined + direct_emissions, hydrogen_production, wacc_proven_tech, + costs_production_dedicated_hydrogen_production, sankey_conversion_group + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8322.0 @@ -29,5 +28,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_must_run.ad b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_must_run.ad index 3be48a91c0..607c0a8f25 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_must_run.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_steam_methane_reformer_must_run.ad @@ -3,11 +3,10 @@ - output.hydrogen = 0.8130081300813008 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - hydrogen_production, ccs_technology_pair, wacc_proven_tech, + direct_emissions, hydrogen_production, ccs_technology_pair, wacc_proven_tech, costs_production_dedicated_hydrogen_production, sankey_conversion_group - ] -- use = undefined + ] +- use = non_energetic - presentation_group = hydrogen_production - availability = 1.0 - full_load_hours = 8322.0 @@ -30,5 +29,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_hydrogen_wind_turbine_offshore.ad b/graphs/energy/nodes/energy/energy_hydrogen_wind_turbine_offshore.ad index 0be600e7db..067907210d 100644 --- a/graphs/energy/nodes/energy/energy_hydrogen_wind_turbine_offshore.ad +++ b/graphs/energy/nodes/energy/energy_hydrogen_wind_turbine_offshore.ad @@ -1,11 +1,10 @@ - output.electricity = 0.97 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_hydrogen_production, - primary_energy_demand, sustainable_production, wacc_proven_tech, + direct_emissions, primary_energy_demand, sustainable_production, wacc_proven_tech, costs_production_dedicated_hydrogen_production, preset_demand - ] -- use = undefined + ] +- use = non_energetic - graph_methods = [full_load_hours] - availability = 1.0 - ccs_investment = 0.0 @@ -24,6 +23,7 @@ - land_use_per_unit = 0.5 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_hydrogen_production ~ demand = CENTRAL_PRODUCTION(energy_hydrogen_wind_turbine_offshore, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_hydrogen_wind_turbine_offshore, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_national_gas_network_natural_gas.converter.ad b/graphs/energy/nodes/energy/energy_national_gas_network_natural_gas.converter.ad index 9172f80e01..480f535c3c 100644 --- a/graphs/energy/nodes/energy/energy_national_gas_network_natural_gas.converter.ad +++ b/graphs/energy/nodes/energy/energy_national_gas_network_natural_gas.converter.ad @@ -1,7 +1,5 @@ - output.loss = elastic -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - sankey_conversion_group, network_gas_production - ] -- use = undefined +- groups = [direct_emissions, sankey_conversion_group, network_gas_production] +- use = energetic - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_coal.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_coal.ad index 75cdf01df4..e908bd2698 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_coal.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production_ccs - graph_methods = [demand, output] - availability = 0.83 @@ -28,6 +27,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.4 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_combined_cycle_ccs_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_ccs_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable.ad index 282d66a448..3415a03923 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production_ccs - graph_methods = [demand, output] - availability = 0.87 @@ -30,6 +29,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.2 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_combined_cycle_ccs_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_ccs_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_coal.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_coal.ad index 48a803f788..9e6d204f77 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_coal.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, output] - availability = 0.85 @@ -27,6 +26,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_combined_cycle_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_coal_gas.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_coal_gas.ad index 999da2cbdf..69906e7ca6 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_coal_gas.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_coal_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - must_run_electricity_production, central_production, electricity_production, + direct_emissions, must_run_electricity_production, central_production, electricity_production, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [output, full_load_hours] @@ -25,6 +24,7 @@ - electricity_output_capacity = 835.0 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ output.electricity = CENTRAL_PRODUCTION(energy_power_combined_cycle_coal_gas, electricity_output_conversion) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_coal_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_hydrogen.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_hydrogen.ad index 72c7bd41ae..44102bd9ad 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_hydrogen.ad @@ -1,10 +1,9 @@ - output.electricity = 0.6 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - availability = 0.9 @@ -29,6 +28,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.11 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 1950.0 diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_dispatchable.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_dispatchable.ad index ee78a4592e..50ab1c88f2 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_dispatchable.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] - availability = 0.9 @@ -29,6 +28,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.11 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_combined_cycle_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_must_run.ad b/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_must_run.ad index b3924908e6..dc9f0e4f1d 100644 --- a/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_must_run.ad +++ b/graphs/energy/nodes/energy/energy_power_combined_cycle_network_gas_must_run.ad @@ -1,10 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, must_run_electricity_production, - hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + direct_emissions, preset_demand, central_production, electricity_production, + must_run_electricity_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, + sankey_conversion_group + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [full_load_hours, output] - availability = 0.9 @@ -28,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_combined_cycle_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_engine_diesel.ad b/graphs/energy/nodes/energy/energy_power_engine_diesel.ad index f38ab29ac0..cf6a53a156 100644 --- a/graphs/energy/nodes/energy/energy_power_engine_diesel.ad +++ b/graphs/energy/nodes/energy/energy_power_engine_diesel.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] @@ -26,6 +25,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.0001 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_engine_diesel, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_engine_diesel, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_engine_network_gas.ad b/graphs/energy/nodes/energy/energy_power_engine_network_gas.ad index e050f1c524..5af23ea5d4 100644 --- a/graphs/energy/nodes/energy/energy_power_engine_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_power_engine_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] @@ -28,6 +27,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_engine_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_engine_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_geothermal.ad b/graphs/energy/nodes/energy/energy_power_geothermal.ad index 4dd6bdcb8f..dba928af95 100644 --- a/graphs/energy/nodes/energy/energy_power_geothermal.ad +++ b/graphs/energy/nodes/energy/energy_power_geothermal.ad @@ -1,12 +1,11 @@ -- use = undefined +- use = energetic - output.electricity = 0.25 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] + ] - presentation_group = electricity_production - merit_order.group = industry_chp - merit_order.level = hv @@ -30,6 +29,7 @@ - technical_lifetime = 30.0 - wacc = 0.04 - sustainability_share = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_geothermal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_geothermal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_hybrid_wind_turbine_offshore.ad b/graphs/energy/nodes/energy/energy_power_hybrid_wind_turbine_offshore.ad index 235757e164..36b4f850a3 100644 --- a/graphs/energy/nodes/energy/energy_power_hybrid_wind_turbine_offshore.ad +++ b/graphs/energy/nodes/energy/energy_power_hybrid_wind_turbine_offshore.ad @@ -1,12 +1,11 @@ - output.electricity = 0.97 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] -- use = undefined + ] +- use = energetic - presentation_group = wind_turbine - graph_methods = [full_load_hours] - availability = 0.92 @@ -34,6 +33,7 @@ - land_use_per_unit = 0.5 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_wind_turbine_offshore, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_hydro_mountain.ad b/graphs/energy/nodes/energy/energy_power_hydro_mountain.ad index 15f4279717..444317bdad 100644 --- a/graphs/energy/nodes/energy/energy_power_hydro_mountain.ad +++ b/graphs/energy/nodes/energy/energy_power_hydro_mountain.ad @@ -1,12 +1,11 @@ -- use = undefined +- use = energetic - output.electricity = 0.95 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] + ] - presentation_group = electricity_production - merit_order.level = hv - merit_order.subtype = dispatchable @@ -29,6 +28,7 @@ - technical_lifetime = 50.0 - wacc = 0.04 - sustainability_share = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_hydro_mountain, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_hydro_mountain, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_hydro_river.ad b/graphs/energy/nodes/energy/energy_power_hydro_river.ad index 16e4eeaf24..680383c9d7 100644 --- a/graphs/energy/nodes/energy/energy_power_hydro_river.ad +++ b/graphs/energy/nodes/energy/energy_power_hydro_river.ad @@ -1,12 +1,11 @@ - output.electricity = 0.98 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours] - availability = 0.98 @@ -30,6 +29,7 @@ - land_use_per_unit = 0.0 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_hydro_river, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_hydro_river, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_nuclear_gen2_uranium_oxide.ad b/graphs/energy/nodes/energy/energy_power_nuclear_gen2_uranium_oxide.ad index c0e430ffca..5ad03e0447 100644 --- a/graphs/energy/nodes/energy/energy_power_nuclear_gen2_uranium_oxide.ad +++ b/graphs/energy/nodes/energy/energy_power_nuclear_gen2_uranium_oxide.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_nuclear_gen2_uranium_oxide, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_nuclear_gen2_uranium_oxide, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_nuclear_gen3_uranium_oxide.ad b/graphs/energy/nodes/energy/energy_power_nuclear_gen3_uranium_oxide.ad index 3ffe00f013..9a2e8d5886 100644 --- a/graphs/energy/nodes/energy/energy_power_nuclear_gen3_uranium_oxide.ad +++ b/graphs/energy/nodes/energy/energy_power_nuclear_gen3_uranium_oxide.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] - availability = 0.92 @@ -25,6 +24,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_nuclear_gen3_uranium_oxide, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_nuclear_gen3_uranium_oxide, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_nuclear_small_modular_reactor_uranium_oxide.ad b/graphs/energy/nodes/energy/energy_power_nuclear_small_modular_reactor_uranium_oxide.ad index 21e91dcbfa..6808855152 100644 --- a/graphs/energy/nodes/energy/energy_power_nuclear_small_modular_reactor_uranium_oxide.ad +++ b/graphs/energy/nodes/energy/energy_power_nuclear_small_modular_reactor_uranium_oxide.ad @@ -1,11 +1,10 @@ - output.electricity = 0.28 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - availability = 0.9 - ccs_investment = 0.0 @@ -25,6 +24,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8322.0 diff --git a/graphs/energy/nodes/energy/energy_power_solar_csp_solar_radiation.ad b/graphs/energy/nodes/energy/energy_power_solar_csp_solar_radiation.ad index 73e96b01bd..bf90ad51b7 100644 --- a/graphs/energy/nodes/energy/energy_power_solar_csp_solar_radiation.ad +++ b/graphs/energy/nodes/energy/energy_power_solar_csp_solar_radiation.ad @@ -1,12 +1,11 @@ -- use = undefined +- use = energetic - output.electricity = 0.35 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] + ] - graph_methods = [demand, full_load_hours] - presentation_group = solar_pv_plant - merit_order.group = weather/solar_csp @@ -30,6 +29,7 @@ - technical_lifetime = 30.0 - wacc = 0.04 - sustainability_share = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_solar_csp_solar_radiation, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_solar_csp_solar_radiation, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_solar_pv_offshore.ad b/graphs/energy/nodes/energy/energy_power_solar_pv_offshore.ad index 9ece7cf6d8..ca7f73cd23 100644 --- a/graphs/energy/nodes/energy/energy_power_solar_pv_offshore.ad +++ b/graphs/energy/nodes/energy/energy_power_solar_pv_offshore.ad @@ -2,11 +2,10 @@ - output.electricity = 0.17 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] + ] - presentation_group = solar_pv_plant - merit_order.group = dynamic: solar_pv_offshore - merit_order.level = hv @@ -31,6 +30,7 @@ - technical_lifetime = 20.0 - wacc = 0.04 - sustainability_share = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_solar_pv_solar_radiation, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_solar_pv_solar_radiation.ad b/graphs/energy/nodes/energy/energy_power_solar_pv_solar_radiation.ad index 9a9998c41b..97f37e1d2f 100644 --- a/graphs/energy/nodes/energy/energy_power_solar_pv_solar_radiation.ad +++ b/graphs/energy/nodes/energy/energy_power_solar_pv_solar_radiation.ad @@ -1,11 +1,10 @@ - output.electricity = 0.17 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] + ] - use = energetic - presentation_group = solar_pv_plant - graph_methods = [demand, full_load_hours] @@ -30,6 +29,7 @@ - land_use_per_unit = 0.2 - sustainability_share = 1.0 - takes_part_in_ets = 0.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_solar_pv_solar_radiation, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_solar_pv_solar_radiation, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_supercritical_ccs_waste_mix.ad b/graphs/energy/nodes/energy/energy_power_supercritical_ccs_waste_mix.ad index 7ec058be13..8a26e3c612 100644 --- a/graphs/energy/nodes/energy/energy_power_supercritical_ccs_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_power_supercritical_ccs_waste_mix.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - graph_methods = [full_load_hours] @@ -30,6 +29,7 @@ - households_supplied_per_unit = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_supercritical_coal.ad b/graphs/energy/nodes/energy/energy_power_supercritical_coal.ad index dd554d681c..1d7faedd9b 100644 --- a/graphs/energy/nodes/energy/energy_power_supercritical_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_supercritical_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] - availability = 0.89 @@ -26,6 +25,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_supercritical_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_supercritical_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_supercritical_waste_mix.ad b/graphs/energy/nodes/energy/energy_power_supercritical_waste_mix.ad index 97f032803f..6fee627121 100644 --- a/graphs/energy/nodes/energy/energy_power_supercritical_waste_mix.ad +++ b/graphs/energy/nodes/energy/energy_power_supercritical_waste_mix.ad @@ -1,11 +1,10 @@ - output.loss = elastic - output.steam_hot_water = 0.0 - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] @@ -30,6 +29,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.5 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_supercritical_waste_mix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_supercritical_waste_mix, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_turbine_hydrogen.ad b/graphs/energy/nodes/energy/energy_power_turbine_hydrogen.ad index 5ba962c67d..ec86365dd7 100644 --- a/graphs/energy/nodes/energy/energy_power_turbine_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_power_turbine_hydrogen.ad @@ -1,10 +1,9 @@ - output.electricity = 0.34 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - availability = 0.9 @@ -29,6 +28,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_turbine_hydrogen, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_turbine_hydrogen, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_turbine_network_gas_dispatchable.ad b/graphs/energy/nodes/energy/energy_power_turbine_network_gas_dispatchable.ad index 5e01b0808a..d97a73c10c 100644 --- a/graphs/energy/nodes/energy/energy_power_turbine_network_gas_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_power_turbine_network_gas_dispatchable.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] @@ -28,6 +27,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.1 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_turbine_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_turbine_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_turbine_network_gas_must_run.ad b/graphs/energy/nodes/energy/energy_power_turbine_network_gas_must_run.ad index d9e4463d8e..3adef50f0a 100644 --- a/graphs/energy/nodes/energy/energy_power_turbine_network_gas_must_run.ad +++ b/graphs/energy/nodes/energy/energy_power_turbine_network_gas_must_run.ad @@ -1,9 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, must_run_electricity_production, - hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, central_production, electricity_production, + must_run_electricity_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = electricity_production - graph_methods = [full_load_hours, output] @@ -28,6 +28,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_turbine_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_ccs_coal.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_ccs_coal.ad index 092fae165e..0d4338857f 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_ccs_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_ccs_coal.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production_ccs - graph_methods = [demand, output, full_load_hours] - availability = 0.87 @@ -27,6 +26,7 @@ - ccs_capture_rate = 0.85 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_ccs_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_ccs_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_coal.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_coal.ad index 45af1816bb..e2fd9850e5 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_coal.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] @@ -26,6 +25,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_cofiring_coal.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_cofiring_coal.ad index e7a616651e..0c2b9f9097 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_cofiring_coal.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_cofiring_coal.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] @@ -26,6 +25,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_cofiring_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_cofiring_coal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_crude_oil.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_crude_oil.ad index 84d7989425..44848dc4c5 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_crude_oil.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_crude_oil.ad @@ -1,10 +1,9 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [demand, output, full_load_hours] - availability = 0.89 @@ -26,6 +25,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_crude_oil, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_crude_oil, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_lignite.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_lignite.ad index a6ac930eb0..7f30f3929b 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_lignite.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_lignite.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production - graph_methods = [output, full_load_hours, demand] - availability = 0.9 @@ -27,6 +26,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_lignite, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_lignite, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_network_gas.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_network_gas.ad index e5f8766ab1..d152dc4916 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_network_gas.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_network_gas.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, dispatchable_production, + direct_emissions, preset_demand, central_production, electricity_production, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - graph_methods = [demand, full_load_hours, output] @@ -28,6 +27,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.3 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_network_gas, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_network_gas, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite.ad b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite.ad index eaa3434595..dca47167d6 100644 --- a/graphs/energy/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite.ad +++ b/graphs/energy/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite.ad @@ -1,11 +1,10 @@ - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] -- use = undefined + ] +- use = energetic - presentation_group = electricity_production_ccs - graph_methods = [output, full_load_hours] - availability = 0.87 @@ -28,6 +27,7 @@ - heat_output_capacity = 0.0 - land_use_per_unit = 0.4 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_oxyfuel_ccs_lignite, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_ultra_supercritical_oxyfuel_ccs_lignite, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_wind_turbine_coastal.ad b/graphs/energy/nodes/energy/energy_power_wind_turbine_coastal.ad index ca41f59188..5a07eb750c 100644 --- a/graphs/energy/nodes/energy/energy_power_wind_turbine_coastal.ad +++ b/graphs/energy/nodes/energy/energy_power_wind_turbine_coastal.ad @@ -1,12 +1,11 @@ - output.electricity = 0.97 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] -- use = undefined + ] +- use = energetic - presentation_group = wind_turbine - graph_methods = [demand, full_load_hours] - availability = 0.95 @@ -30,6 +29,7 @@ - land_use_per_unit = 0.2 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_wind_turbine_coastal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_wind_turbine_coastal, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_wind_turbine_inland.ad b/graphs/energy/nodes/energy/energy_power_wind_turbine_inland.ad index 61a22752b4..17d27ace9a 100644 --- a/graphs/energy/nodes/energy/energy_power_wind_turbine_inland.ad +++ b/graphs/energy/nodes/energy/energy_power_wind_turbine_inland.ad @@ -1,12 +1,11 @@ - output.electricity = 0.97 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] -- use = undefined + ] +- use = energetic - presentation_group = wind_turbine - graph_methods = [demand, full_load_hours] - availability = 0.95 @@ -30,6 +29,7 @@ - land_use_per_unit = 0.2 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_wind_turbine_inland, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_wind_turbine_inland, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_wind_turbine_offshore.ad b/graphs/energy/nodes/energy/energy_power_wind_turbine_offshore.ad index 04d52c77cd..141508235c 100644 --- a/graphs/energy/nodes/energy/energy_power_wind_turbine_offshore.ad +++ b/graphs/energy/nodes/energy/energy_power_wind_turbine_offshore.ad @@ -1,12 +1,11 @@ - output.electricity = 0.97 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, primary_energy_demand, + direct_emissions, preset_demand, central_production, electricity_production, primary_energy_demand, sustainable_production, volatile_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants - ] -- use = undefined + ] +- use = energetic - presentation_group = wind_turbine - graph_methods = [demand, full_load_hours] - availability = 0.92 @@ -30,6 +29,7 @@ - land_use_per_unit = 0.5 - sustainability_share = 1.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(energy_power_wind_turbine_offshore, demand) ~ full_load_hours = CENTRAL_PRODUCTION(energy_power_wind_turbine_offshore, full_load_hours) diff --git a/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_dispatchable.ad b/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_dispatchable.ad index 4763248c91..3fbab83deb 100644 --- a/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_dispatchable.ad @@ -5,11 +5,10 @@ - output.electricity = 0.361 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - availability = 0.9 @@ -31,5 +30,6 @@ - free_co2_factor = 0.9 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_must_run.ad b/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_must_run.ad index a022870e86..baefee545b 100644 --- a/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_must_run.ad +++ b/graphs/energy/nodes/energy/energy_power_wood_pellets_ccs_must_run.ad @@ -5,11 +5,10 @@ - output.electricity = 0.361 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, must_run_electricity_production, hv_net_supply, wacc_unproven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production_ccs - availability = 0.9 @@ -32,5 +31,6 @@ - free_co2_factor = 0.9 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_power_wood_pellets_dispatchable.ad b/graphs/energy/nodes/energy/energy_power_wood_pellets_dispatchable.ad index 6d4ddd4d20..0282761d19 100644 --- a/graphs/energy/nodes/energy/energy_power_wood_pellets_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_power_wood_pellets_dispatchable.ad @@ -5,11 +5,10 @@ - output.electricity = 0.46 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, dispatchable_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - availability = 0.9 @@ -30,5 +29,6 @@ - electricity_output_capacity = 800.0 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_power_wood_pellets_must_run.ad b/graphs/energy/nodes/energy/energy_power_wood_pellets_must_run.ad index 2f48a3d7d5..00752ba995 100644 --- a/graphs/energy/nodes/energy/energy_power_wood_pellets_must_run.ad +++ b/graphs/energy/nodes/energy/energy_power_wood_pellets_must_run.ad @@ -5,11 +5,10 @@ - output.electricity = 0.46 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_electricity_and_heat_production, - preset_demand, central_production, electricity_production, ccs_technology_pair, + direct_emissions, preset_demand, central_production, electricity_production, ccs_technology_pair, must_run_electricity_production, hv_net_supply, wacc_proven_tech, costs_production_power_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = electricity_production - availability = 0.9 @@ -31,5 +30,6 @@ - electricity_output_capacity = 800.0 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_electricity_and_heat_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_bio_ethanol.ad b/graphs/energy/nodes/energy/energy_production_bio_ethanol.ad index 19f388af9e..98f8def7a5 100644 --- a/graphs/energy/nodes/energy/energy_production_bio_ethanol.ad +++ b/graphs/energy/nodes/energy/energy_production_bio_ethanol.ad @@ -3,11 +3,10 @@ - output.bio_ethanol = 0.47 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, biomass_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, biomass_products_production + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -26,5 +25,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_bio_ethanol_to_jet.ad b/graphs/energy/nodes/energy/energy_production_bio_ethanol_to_jet.ad index 2b43b26f00..264f4c9cb3 100644 --- a/graphs/energy/nodes/energy/energy_production_bio_ethanol_to_jet.ad +++ b/graphs/energy/nodes/energy/energy_production_bio_ethanol_to_jet.ad @@ -4,11 +4,10 @@ - output.biodiesel = 0.1733 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -28,5 +27,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_bio_lng.ad b/graphs/energy/nodes/energy/energy_production_bio_lng.ad index 624437c2b1..86b6975080 100644 --- a/graphs/energy/nodes/energy/energy_production_bio_lng.ad +++ b/graphs/energy/nodes/energy/energy_production_bio_lng.ad @@ -1,8 +1,6 @@ - use = energetic - output.bio_lng = 0.432 - output.loss = elastic -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, sankey_conversion_group - ] +- groups = [direct_emissions, bio_footprint_calculation, sankey_conversion_group] - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_bio_oil.ad b/graphs/energy/nodes/energy/energy_production_bio_oil.ad index 5b3d199ff6..e2f3f158f1 100644 --- a/graphs/energy/nodes/energy/energy_production_bio_oil.ad +++ b/graphs/energy/nodes/energy/energy_production_bio_oil.ad @@ -1,8 +1,6 @@ - use = energetic - output.bio_oil = 0.998 - output.loss = elastic -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, sankey_conversion_group - ] +- groups = [direct_emissions, bio_footprint_calculation, sankey_conversion_group] - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_biomethanol_to_jet.ad b/graphs/energy/nodes/energy/energy_production_biomethanol_to_jet.ad index 783c3dc88d..f7979a7a6d 100644 --- a/graphs/energy/nodes/energy/energy_production_biomethanol_to_jet.ad +++ b/graphs/energy/nodes/energy/energy_production_biomethanol_to_jet.ad @@ -4,11 +4,10 @@ - output.bionaphtha = 0.14402 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -28,5 +27,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs.ad b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs.ad index 79d1c6d5d6..839f22735f 100644 --- a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs.ad @@ -4,11 +4,10 @@ - output.bionaphtha = 0.14484 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, biomass_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, biomass_products_production + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -26,5 +25,6 @@ - free_co2_factor = 0.632781 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs.ad b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs.ad index 0d5c9b7b6c..febf187b2b 100644 --- a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs.ad @@ -4,11 +4,10 @@ - output.bionaphtha = 0.14484 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, biomass_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, biomass_products_production + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -26,5 +25,6 @@ - free_co2_factor = 0.632781 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs.ad b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs.ad index e5a52a84bf..efa002c595 100644 --- a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs.ad @@ -4,11 +4,10 @@ - output.loss = elastic - output.naphtha = 0.14484 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, oil_and_oil_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, oil_and_oil_products_production + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -26,5 +25,6 @@ - free_co2_factor = 0.651832 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_dispatchable.ad b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_dispatchable.ad index 753eb606f0..7f906b8e3e 100644 --- a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_dispatchable.ad +++ b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_dispatchable.ad @@ -8,12 +8,11 @@ - output.kerosene = 0.525 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - co2_emissions_primary, costs_production_liquid_fuels, wacc_unproven_tech, mv_net_flexibility, - sankey_conversion_group, application_group, synthetic_products_production, + direct_emissions, co2_emissions_primary, costs_production_liquid_fuels, wacc_unproven_tech, + mv_net_flexibility, sankey_conversion_group, application_group, synthetic_products_production, oil_and_oil_products_production, non_final_electricity_demand_converters - ] -- use = undefined + ] +- use = energetic - presentation_group = p2kerosene - availability = 0.94231 - full_load_hours = 8000.0 @@ -39,5 +38,6 @@ - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 - max_consumption_price = 22.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_must_run.ad b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_must_run.ad index 0cff954e5e..aa541be808 100644 --- a/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_must_run.ad +++ b/graphs/energy/nodes/energy/energy_production_fischer_tropsch_synthetic_must_run.ad @@ -8,12 +8,11 @@ - output.kerosene = 0.525 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, co2_emissions_primary, costs_production_liquid_fuels, wacc_unproven_tech, - sankey_conversion_group, application_group, synthetic_products_production, + direct_emissions, preset_demand, co2_emissions_primary, costs_production_liquid_fuels, + wacc_unproven_tech, sankey_conversion_group, application_group, synthetic_products_production, oil_and_oil_products_production, non_final_electricity_demand_converters - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.94231 - full_load_hours = 8000.0 @@ -39,5 +38,6 @@ - co2_utilisation_per_mj = 0.09038 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil.ad b/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil.ad index df292db574..984ad684a2 100644 --- a/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil.ad +++ b/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil.ad @@ -5,11 +5,10 @@ - output.bionaphtha = 0.244 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.923 - full_load_hours = 7500.0 @@ -29,5 +28,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil_burner_hydrogen.ad b/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil_burner_hydrogen.ad index 9b4cd7bfb3..1ad8789836 100644 --- a/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil_burner_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_production_fractionation_bio_pyrolysis_oil_burner_hydrogen.ad @@ -1,10 +1,7 @@ - input.hydrogen = 1.0 - output.loss = elastic - output.steam_hot_water = 0.9 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - application_group, wacc_proven_tech, costs_production_liquid_fuels - ] +- groups = [direct_emissions, application_group, wacc_proven_tech, costs_production_liquid_fuels] - use = energetic - availability = 1.0 - full_load_hours = 2190.0 @@ -25,3 +22,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 100.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil.ad b/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil.ad index 202e783a82..4629b7ddc2 100644 --- a/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil.ad +++ b/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil.ad @@ -5,11 +5,10 @@ - output.loss = elastic - output.naphtha = 0.169 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, oil_and_oil_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.923 - full_load_hours = 7500.0 @@ -29,5 +28,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil_burner_hydrogen.ad b/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil_burner_hydrogen.ad index 9b4cd7bfb3..1ad8789836 100644 --- a/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil_burner_hydrogen.ad +++ b/graphs/energy/nodes/energy/energy_production_fractionation_pyrolysis_oil_burner_hydrogen.ad @@ -1,10 +1,7 @@ - input.hydrogen = 1.0 - output.loss = elastic - output.steam_hot_water = 0.9 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - application_group, wacc_proven_tech, costs_production_liquid_fuels - ] +- groups = [direct_emissions, application_group, wacc_proven_tech, costs_production_liquid_fuels] - use = energetic - availability = 1.0 - full_load_hours = 2190.0 @@ -25,3 +22,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 100.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_hvo_bio_kerosene.ad b/graphs/energy/nodes/energy/energy_production_hvo_bio_kerosene.ad index c86da33d1f..a7bae19f12 100644 --- a/graphs/energy/nodes/energy/energy_production_hvo_bio_kerosene.ad +++ b/graphs/energy/nodes/energy/energy_production_hvo_bio_kerosene.ad @@ -5,11 +5,10 @@ - output.bionaphtha = 0.082 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -31,5 +30,6 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_hvo_biodiesel.ad b/graphs/energy/nodes/energy/energy_production_hvo_biodiesel.ad index 90d6451d18..71011a460d 100644 --- a/graphs/energy/nodes/energy/energy_production_hvo_biodiesel.ad +++ b/graphs/energy/nodes/energy/energy_production_hvo_biodiesel.ad @@ -4,11 +4,10 @@ - output.bionaphtha = 0.07 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, + direct_emissions, preset_demand, wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, costs_production_liquid_fuels - ] -- use = undefined + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -28,5 +27,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs.ad b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs.ad index 68d8c70a33..885cfd7373 100644 --- a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs.ad @@ -2,11 +2,10 @@ - output.biomethanol = 0.61 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_methanol_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, biomass_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, biomass_products_production + ] +- use = non_energetic - presentation_group = liquid_fuels_ccs - availability = 0.96 - full_load_hours = 8000.0 @@ -24,5 +23,6 @@ - free_co2_factor = 0.522288 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_methanol_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs.ad b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs.ad index 40738ad7df..41f549c319 100644 --- a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs.ad @@ -2,11 +2,10 @@ - output.biomethanol = 0.61 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_methanol_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, biomass_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, biomass_products_production + ] +- use = non_energetic - presentation_group = liquid_fuels_ccs - availability = 0.96 - full_load_hours = 8000.0 @@ -24,5 +23,6 @@ - free_co2_factor = 0.522288 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_methanol_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs.ad b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs.ad index 45f54f17ee..abb2f88c6e 100644 --- a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs.ad +++ b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs.ad @@ -2,11 +2,10 @@ - output.loss = elastic - output.methanol = 0.61 - groups = [ - emissions, emissions_energy, emissions_energy_methanol_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, methanol_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, methanol_production + ] +- use = non_energetic - presentation_group = liquid_fuels_ccs - availability = 0.96 - full_load_hours = 8000.0 @@ -24,5 +23,6 @@ - free_co2_factor = 0.539393 - ccs_capture_rate = 0.9 - takes_part_in_ets = 1.0 +- sector_label = energy_methanol_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_synthetic.ad b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_synthetic.ad index a0b71a4667..0789fb387a 100644 --- a/graphs/energy/nodes/energy/energy_production_methanol_synthesis_synthetic.ad +++ b/graphs/energy/nodes/energy/energy_production_methanol_synthesis_synthetic.ad @@ -7,13 +7,12 @@ - output.methanol = 0.787 - output.loss = elastic - groups = [ - emissions, emissions_energy, emissions_energy_methanol_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, synthetic_products_production, methanol_production, + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, synthetic_products_production, methanol_production, non_final_electricity_demand_converters, co2_emissions_primary - ] + ] - presentation_group = liquid_fuels -- use = undefined +- use = non_energetic - availability = 1.0 - full_load_hours = 8322.0 - typical_input_capacity = 333.79 @@ -38,5 +37,6 @@ - merit_order.subtype = generic - merit_order.type = consumer - takes_part_in_ets = 1.0 +- sector_label = energy_methanol_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_methanol_to_jet.ad b/graphs/energy/nodes/energy/energy_production_methanol_to_jet.ad index 41de52df3a..c5fcecbcd4 100644 --- a/graphs/energy/nodes/energy/energy_production_methanol_to_jet.ad +++ b/graphs/energy/nodes/energy/energy_production_methanol_to_jet.ad @@ -4,11 +4,10 @@ - output.loss = elastic - output.naphtha = 0.1415 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, sankey_conversion_group, - application_group, oil_and_oil_products_production - ] -- use = undefined + direct_emissions, preset_demand, wacc_unproven_tech, costs_production_liquid_fuels, + sankey_conversion_group, application_group, oil_and_oil_products_production + ] +- use = energetic - presentation_group = liquid_fuels - availability = 0.962 - full_load_hours = 8000.0 @@ -28,5 +27,6 @@ - hydrogen.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production ~ demand = 0.0 diff --git a/graphs/energy/nodes/energy/energy_production_pyrolysis_biogenic_waste.ad b/graphs/energy/nodes/energy/energy_production_pyrolysis_biogenic_waste.ad index d764cacc39..c635090bf7 100644 --- a/graphs/energy/nodes/energy/energy_production_pyrolysis_biogenic_waste.ad +++ b/graphs/energy/nodes/energy/energy_production_pyrolysis_biogenic_waste.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.steam_hot_water = 0.178 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, - costs_production_liquid_fuels - ] -- use = undefined + direct_emissions, wacc_unproven_tech, sankey_conversion_group, application_group, + biomass_products_production, costs_production_liquid_fuels + ] +- use = energetic - presentation_group = liquid_fuels_ccs - availability = 0.923 - full_load_hours = 7500.0 @@ -24,3 +23,4 @@ - wacc = 0.07 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_pyrolysis_dry_biomass.ad b/graphs/energy/nodes/energy/energy_production_pyrolysis_dry_biomass.ad index ddf73ea930..d147f869d4 100644 --- a/graphs/energy/nodes/energy/energy_production_pyrolysis_dry_biomass.ad +++ b/graphs/energy/nodes/energy/energy_production_pyrolysis_dry_biomass.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.steam_hot_water = 0.178 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - wacc_unproven_tech, sankey_conversion_group, application_group, biomass_products_production, - costs_production_liquid_fuels - ] -- use = undefined + direct_emissions, wacc_unproven_tech, sankey_conversion_group, application_group, + biomass_products_production, costs_production_liquid_fuels + ] +- use = energetic - presentation_group = liquid_fuels_ccs - availability = 0.923 - full_load_hours = 7500.0 @@ -24,3 +23,4 @@ - wacc = 0.07 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_pyrolysis_non_biogenic_waste.ad b/graphs/energy/nodes/energy/energy_production_pyrolysis_non_biogenic_waste.ad index 648f969da5..e585e61b15 100644 --- a/graphs/energy/nodes/energy/energy_production_pyrolysis_non_biogenic_waste.ad +++ b/graphs/energy/nodes/energy/energy_production_pyrolysis_non_biogenic_waste.ad @@ -3,11 +3,10 @@ - output.pyrolysis_oil = 0.623 - output.steam_hot_water = 0.178 - groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - wacc_unproven_tech, sankey_conversion_group, application_group, oil_and_oil_products_production, - costs_production_liquid_fuels - ] -- use = undefined + direct_emissions, wacc_unproven_tech, sankey_conversion_group, application_group, + oil_and_oil_products_production, costs_production_liquid_fuels + ] +- use = energetic - presentation_group = liquid_fuels_ccs - availability = 0.923 - full_load_hours = 7500.0 @@ -24,3 +23,4 @@ - wacc = 0.07 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_production_wood_pellets.converter.ad b/graphs/energy/nodes/energy/energy_production_wood_pellets.converter.ad index 6c117eff92..f311d25b9d 100644 --- a/graphs/energy/nodes/energy/energy_production_wood_pellets.converter.ad +++ b/graphs/energy/nodes/energy/energy_production_wood_pellets.converter.ad @@ -1,8 +1,6 @@ -- use = undefined +- use = energetic - output.loss = elastic - output.wood_pellets = 0.9 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, sankey_conversion_group - ] +- groups = [direct_emissions, bio_footprint_calculation, sankey_conversion_group] - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_regasification_lng.ad b/graphs/energy/nodes/energy/energy_regasification_lng.ad index f5afed1ff7..5a1bb96906 100644 --- a/graphs/energy/nodes/energy/energy_regasification_lng.ad +++ b/graphs/energy/nodes/energy/energy_regasification_lng.ad @@ -5,11 +5,8 @@ - output.loss = elastic - output.natural_gas = 0.985 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - wacc_proven_tech, costs_production_other, sankey_conversion_group - ] -- use = undefined +- groups = [direct_emissions, wacc_proven_tech, costs_production_other, sankey_conversion_group] +- use = energetic - availability = 0.99 - full_load_hours = 8700.0 - typical_input_capacity = 12225.7445220787 @@ -29,3 +26,4 @@ - free_co2_factor = 0.0 - land_use_per_unit = 0.35 - takes_part_in_ets = 1.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_torrefaction_wood.converter.ad b/graphs/energy/nodes/energy/energy_torrefaction_wood.converter.ad index ca0d4c4325..78e19a0a0c 100644 --- a/graphs/energy/nodes/energy/energy_torrefaction_wood.converter.ad +++ b/graphs/energy/nodes/energy/energy_torrefaction_wood.converter.ad @@ -1,12 +1,10 @@ -- use = undefined +- use = energetic - output.loss = elastic - output.torrefied_biomass_pellets = 0.86 - input.network_gas = 0.053 - input.dry_biomass = 0.947 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - bio_footprint_calculation, sankey_conversion_group - ] +- groups = [direct_emissions, bio_footprint_calculation, sankey_conversion_group] - network_gas.profile = flat - network_gas.type = consumer - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/energy/energy_treatment_natural_gas.ad b/graphs/energy/nodes/energy/energy_treatment_natural_gas.ad index 2d1b0e7278..eff2a8cfe9 100644 --- a/graphs/energy/nodes/energy/energy_treatment_natural_gas.ad +++ b/graphs/energy/nodes/energy/energy_treatment_natural_gas.ad @@ -1,8 +1,6 @@ - output.loss = elastic - output.natural_gas = 0.986016667985657 -- groups = [ - emissions, emissions_energy, emissions_energy_fuels_production, - sankey_conversion_group - ] -- use = undefined +- groups = [direct_emissions, sankey_conversion_group] +- use = energetic - free_co2_factor = 0.0 +- sector_label = energy_fuels_production diff --git a/graphs/energy/nodes/households/households_appliances_clothes_dryer_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_clothes_dryer_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_clothes_dryer_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_clothes_dryer_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_computer_media_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_computer_media_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_computer_media_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_computer_media_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_dishwasher_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_dishwasher_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_dishwasher_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_dishwasher_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_fridge_freezer_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_fridge_freezer_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_fridge_freezer_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_fridge_freezer_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_other_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_other_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_other_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_other_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_television_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_television_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_television_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_television_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_vacuum_cleaner_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_vacuum_cleaner_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_vacuum_cleaner_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_vacuum_cleaner_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_appliances_washing_machine_electricity.converter.ad b/graphs/energy/nodes/households/households_appliances_washing_machine_electricity.converter.ad index 625ca2d79e..f24584be0d 100644 --- a/graphs/energy/nodes/households/households_appliances_washing_machine_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_appliances_washing_machine_electricity.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_appliances, - preset_demand, useful_demand, useful_demand_electric, application_group - ] +- groups = [direct_emissions, preset_demand, useful_demand, useful_demand_electric, application_group] - free_co2_factor = 0.0 +- sector_label = households_appliances diff --git a/graphs/energy/nodes/households/households_cooker_halogen_electricity.converter.ad b/graphs/energy/nodes/households/households_cooker_halogen_electricity.converter.ad index d93c96a1ae..9de2a8d89a 100644 --- a/graphs/energy/nodes/households/households_cooker_halogen_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooker_halogen_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.6 -- groups = [ - emissions, emissions_households, emissions_households_cooking, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_cooking diff --git a/graphs/energy/nodes/households/households_cooker_induction_electricity.converter.ad b/graphs/energy/nodes/households/households_cooker_induction_electricity.converter.ad index a27e10e543..81c401fb28 100644 --- a/graphs/energy/nodes/households/households_cooker_induction_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooker_induction_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.85 -- groups = [ - emissions, emissions_households, emissions_households_cooking, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_cooking diff --git a/graphs/energy/nodes/households/households_cooker_network_gas.converter.ad b/graphs/energy/nodes/households/households_cooker_network_gas.converter.ad index 0e82b96385..387742701d 100644 --- a/graphs/energy/nodes/households/households_cooker_network_gas.converter.ad +++ b/graphs/energy/nodes/households/households_cooker_network_gas.converter.ad @@ -1,10 +1,8 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.4 -- groups = [ - emissions, emissions_households, emissions_households_cooking, - application_group - ] +- groups = [direct_emissions, application_group] - network_gas.type = consumer - network_gas.profile = households_appliances - free_co2_factor = 0.0 +- sector_label = households_cooking diff --git a/graphs/energy/nodes/households/households_cooker_resistive_electricity.converter.ad b/graphs/energy/nodes/households/households_cooker_resistive_electricity.converter.ad index 2ae4cb9e0a..373f8a43f5 100644 --- a/graphs/energy/nodes/households/households_cooker_resistive_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooker_resistive_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.55 -- groups = [ - emissions, emissions_households, emissions_households_cooking, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_cooking diff --git a/graphs/energy/nodes/households/households_cooker_wood_pellets.converter.ad b/graphs/energy/nodes/households/households_cooker_wood_pellets.converter.ad index 9f330f2775..76d37b22dd 100644 --- a/graphs/energy/nodes/households/households_cooker_wood_pellets.converter.ad +++ b/graphs/energy/nodes/households/households_cooker_wood_pellets.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.3 -- groups = [ - emissions, emissions_households, emissions_households_cooking, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_cooking diff --git a/graphs/energy/nodes/households/households_cooling_airconditioning_electricity.converter.ad b/graphs/energy/nodes/households/households_cooling_airconditioning_electricity.converter.ad index ed1ae3f73f..2f586ce5da 100644 --- a/graphs/energy/nodes/households/households_cooling_airconditioning_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooling_airconditioning_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_households, emissions_households_cooling, - heat_production, application_group, lv_net_demand, wacc_households, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.0025 - takes_part_in_ets = 0.0 +- sector_label = households_cooling diff --git a/graphs/energy/nodes/households/households_cooling_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_cooling_heatpump_air_water_electricity.converter.ad index 7047dc1663..70ef15bf54 100644 --- a/graphs/energy/nodes/households/households_cooling_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooling_heatpump_air_water_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_households, emissions_households_cooling, - heat_production, application_group, lv_net_demand, wacc_households, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.01 - takes_part_in_ets = 0.0 +- sector_label = households_cooling diff --git a/graphs/energy/nodes/households/households_cooling_heatpump_ground_water_electricity.converter.ad b/graphs/energy/nodes/households/households_cooling_heatpump_ground_water_electricity.converter.ad index 16b0beaaa9..663c741406 100644 --- a/graphs/energy/nodes/households/households_cooling_heatpump_ground_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_cooling_heatpump_ground_water_electricity.converter.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_households, emissions_households_cooling, - heat_production, application_group, lv_net_demand, wacc_households, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 0.01 - takes_part_in_ets = 0.0 +- sector_label = households_cooling diff --git a/graphs/energy/nodes/households/households_cooling_heatpump_surface_water_water_ts_electricity.ad b/graphs/energy/nodes/households/households_cooling_heatpump_surface_water_water_ts_electricity.ad index f9fc69987a..e2cb81ed6a 100644 --- a/graphs/energy/nodes/households/households_cooling_heatpump_surface_water_water_ts_electricity.ad +++ b/graphs/energy/nodes/households/households_cooling_heatpump_surface_water_water_ts_electricity.ad @@ -3,10 +3,9 @@ - output.cooling = 1.0 - output.loss = elastic - groups = [ - emissions, emissions_households, emissions_households_cooling, - heat_production, application_group, lv_net_demand, wacc_households, + direct_emissions, heat_production, application_group, lv_net_demand, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -29,3 +28,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 2.25 - takes_part_in_ets = 0.0 +- sector_label = households_cooling diff --git a/graphs/energy/nodes/households/households_final_demand_for_cooling_network_gas.ad b/graphs/energy/nodes/households/households_final_demand_for_cooling_network_gas.ad index 0bac7d58f5..534ddeaadb 100644 --- a/graphs/energy/nodes/households/households_final_demand_for_cooling_network_gas.ad +++ b/graphs/energy/nodes/households/households_final_demand_for_cooling_network_gas.ad @@ -2,7 +2,6 @@ # application nodes for households cooling using network gas - use = energetic -- groups = [ - emissions, emissions_households, emissions_households_cooling - ] +- groups = [direct_emissions] - free_co2_factor = 0.0 +- sector_label = households_cooling diff --git a/graphs/energy/nodes/households/households_lighting_efficient_fluorescent_electricity.converter.ad b/graphs/energy/nodes/households/households_lighting_efficient_fluorescent_electricity.converter.ad index 0cc976803d..398d0852a5 100644 --- a/graphs/energy/nodes/households/households_lighting_efficient_fluorescent_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_lighting_efficient_fluorescent_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.light = 0.25 - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_lighting, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_lighting diff --git a/graphs/energy/nodes/households/households_lighting_incandescent_electricity.converter.ad b/graphs/energy/nodes/households/households_lighting_incandescent_electricity.converter.ad index 36f0d27506..cb33e8184b 100644 --- a/graphs/energy/nodes/households/households_lighting_incandescent_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_lighting_incandescent_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.light = 0.05 - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_lighting, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_lighting diff --git a/graphs/energy/nodes/households/households_lighting_led_electricity.converter.ad b/graphs/energy/nodes/households/households_lighting_led_electricity.converter.ad index 9369f80816..6be18c01dc 100644 --- a/graphs/energy/nodes/households/households_lighting_led_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_lighting_led_electricity.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.light = 0.5 - output.loss = elastic -- groups = [ - emissions, emissions_households, emissions_households_lighting, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = households_lighting diff --git a/graphs/energy/nodes/households/households_space_heater_coal.converter.ad b/graphs/energy/nodes/households/households_space_heater_coal.converter.ad index 24adfabdfc..2f8add010d 100644 --- a/graphs/energy/nodes/households/households_space_heater_coal.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.43 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_households, - costs_building_and_installations_households, ht_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_households, costs_building_and_installations_households, ht_delivery_system_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.0099 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_combined_hydrogen.converter.ad b/graphs/energy/nodes/households/households_space_heater_combined_hydrogen.converter.ad index 5247eb2c89..bc3d7aabe9 100644 --- a/graphs/energy/nodes/households/households_space_heater_combined_hydrogen.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_combined_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.1 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_households, - costs_building_and_installations_households, ht_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_households, costs_building_and_installations_households, ht_delivery_system_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -32,3 +31,4 @@ - heat_output_capacity = 0.022 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_combined_network_gas.converter.ad b/graphs/energy/nodes/households/households_space_heater_combined_network_gas.converter.ad index dbc699ff06..be49ee2b90 100644 --- a/graphs/energy/nodes/households/households_space_heater_combined_network_gas.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_combined_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.07 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, application_group, aggregator_producer, + direct_emissions, demand_driven, heat_production, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households, ht_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.022 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_crude_oil.converter.ad b/graphs/energy/nodes/households/households_space_heater_crude_oil.converter.ad index 38b46b28fb..b05ca3a056 100644 --- a/graphs/energy/nodes/households/households_space_heater_crude_oil.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.85 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_households, - costs_building_and_installations_households, ht_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_households, costs_building_and_installations_households, ht_delivery_system_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.0105 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_district_heating_ht_steam_hot_water.ad b/graphs/energy/nodes/households/households_space_heater_district_heating_ht_steam_hot_water.ad index f6bd36d832..3d01dfaceb 100644 --- a/graphs/energy/nodes/households/households_space_heater_district_heating_ht_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_space_heater_district_heating_ht_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households, ht_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_district_heating_lt_steam_hot_water.ad b/graphs/energy/nodes/households/households_space_heater_district_heating_lt_steam_hot_water.ad index 4ec3c45970..d59c275459 100644 --- a/graphs/energy/nodes/households/households_space_heater_district_heating_lt_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_space_heater_district_heating_lt_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households, lt_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_district_heating_mt_steam_hot_water.ad b/graphs/energy/nodes/households/households_space_heater_district_heating_mt_steam_hot_water.ad index 5fb1c36e04..61f7bc545d 100644 --- a/graphs/energy/nodes/households/households_space_heater_district_heating_mt_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_space_heater_district_heating_mt_steam_hot_water.ad @@ -1,9 +1,8 @@ - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households, mt_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -31,3 +30,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_electricity.converter.ad index 4702c9811f..95543ef8a1 100644 --- a/graphs/energy/nodes/households/households_space_heater_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_electricity.converter.ad @@ -1,11 +1,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_space_heating_producers, application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households, ht_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 0.006 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.ad similarity index 57% rename from graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.converter.ad rename to graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.ad index 512ec8abc4..4be1885d65 100644 --- a/graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_heatpump_air_water_electricity.ad @@ -1,15 +1,16 @@ -- input.ambient_heat = 0.777777777777778 -- input.electricity = 0.222222222222222 +- input.ambient_heat = 0.714286 +- input.electricity = 0.285714 - output.cooling = 0.0 - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, - application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, - costs_building_and_installations_households, ht_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, + etmoses, merit_household_space_heating_producers, application_group, + aggregator_producer, lv_net_demand, wacc_households, + merit_order_csv_include, costs_building_and_installations_households, ht_delivery_system_households + ] - use = energetic +- sector_label = households_space_heating - presentation_group = heat_pumps - availability = 0.0 - full_load_hours = 0.0 @@ -17,27 +18,27 @@ - construction_time = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 -- fixed_operation_and_maintenance_costs_per_year = 100.0 -- initial_investment = 9098.0 +- fixed_operation_and_maintenance_costs_per_year = 50.0 +- initial_investment = 10590.0 - technical_lifetime = 15.0 - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.02 - fever.alias_of = households_water_heater_heatpump_air_water_electricity -- fever.base_cop = 2.323 -- fever.capacity.electricity = 0.0025889967637540458 -- fever.cop_per_degree = 0.0578 +- fever.base_cop = 3.0584 +- fever.capacity.electricity = 0.002889 +- fever.cop_per_degree = 0.0593 - fever.defer_for = 4 - fever.efficiency_balanced_with = ambient_heat - fever.efficiency_based_on = electricity - fever.group = space_heating -- fever.type = producer - fever.technology_curve_type = tech_constant -- storage.cost_per_mwh = 154736.8 +- fever.type = producer +- storage.cost_per_mwh = 0.0 - storage.decay = 0.0 - storage.volume = 0.0 - electricity_output_capacity = 0.0 - free_co2_factor = 0.0 -- heat_output_capacity = 0.01 +- heat_output_capacity = 0.0078 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 diff --git a/graphs/energy/nodes/households/households_space_heater_heatpump_ground_water_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_heatpump_ground_water_electricity.converter.ad index c211b258fa..1e44a5666f 100644 --- a/graphs/energy/nodes/households/households_space_heater_heatpump_ground_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_heatpump_ground_water_electricity.converter.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_space_heating_producers, application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households, lt_delivery_system_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -35,3 +34,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_heatpump_pvt_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_heatpump_pvt_electricity.converter.ad index 3582187ee7..7e48eb2c16 100644 --- a/graphs/energy/nodes/households/households_space_heater_heatpump_pvt_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_heatpump_pvt_electricity.converter.ad @@ -1,10 +1,9 @@ - use = energetic - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_space_heating_producers, application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households, lt_delivery_system_households - ] + ] - presentation_group = heat_pumps - fever.alias_of = households_water_heater_heatpump_pvt_electricity - fever.defer_for = 4 @@ -35,5 +34,6 @@ - heat_output_capacity = 0.0078 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating ~ demand = 0.0 diff --git a/graphs/energy/nodes/households/households_space_heater_heatpump_surface_water_water_ts_electricity.ad b/graphs/energy/nodes/households/households_space_heater_heatpump_surface_water_water_ts_electricity.ad index b8bba2b02d..a287cf5a63 100644 --- a/graphs/energy/nodes/households/households_space_heater_heatpump_surface_water_water_ts_electricity.ad +++ b/graphs/energy/nodes/households/households_space_heater_heatpump_surface_water_water_ts_electricity.ad @@ -4,11 +4,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, merit_household_space_heating_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, merit_household_space_heating_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -41,3 +40,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad b/graphs/energy/nodes/households/households_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad index c6f7b9d259..0b8006f922 100644 --- a/graphs/energy/nodes/households/households_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad +++ b/graphs/energy/nodes/households/households_space_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad @@ -6,11 +6,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.crude_oil = 0.95 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_space_heating_producers, application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households, mt_delivery_system_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -41,3 +40,4 @@ - heat_output_capacity = 0.0122 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.ad similarity index 69% rename from graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.converter.ad rename to graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.ad index 1ecf66cba0..6c7f6b8648 100644 --- a/graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_hybrid_heatpump_air_water_electricity.ad @@ -1,15 +1,15 @@ -- output.cooling = 0.0 - output.loss = elastic - output.useable_heat.ambient_heat = 1.0 - output.useable_heat.electricity = 1.0 - output.useable_heat.network_gas = 1.07 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, - application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, - costs_building_and_installations_households, mt_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, + etmoses, merit_household_space_heating_producers, application_group, + aggregator_producer, lv_net_demand, wacc_households, + merit_order_csv_include, costs_building_and_installations_households, mt_delivery_system_households + ] - use = energetic +- sector_label = households_space_heating - presentation_group = heat_pumps - graph_methods = [input] - availability = 0.0 @@ -18,29 +18,29 @@ - construction_time = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 -- fixed_operation_and_maintenance_costs_per_year = 200.0 -- initial_investment = 3819.0 +- fixed_operation_and_maintenance_costs_per_year = 50.0 +- initial_investment = 6931.5 - technical_lifetime = 15.0 - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.02 - fever.alias_of = households_water_heater_hybrid_heatpump_air_water_electricity -- fever.base_cop = 2.323 -- fever.capacity.electricity = 0.0018327326043130307 +- fever.base_cop = 3.0584 +- fever.capacity.electricity = 0.001704 - fever.capacity.network_gas = 0.022 -- fever.cop_cutoff = 2.6 -- fever.cop_per_degree = 0.0578 +- fever.cop_cutoff = 2.600238 +- fever.cop_per_degree = 0.0593 - fever.defer_for = 4 - fever.efficiency_balanced_with = ambient_heat - fever.efficiency_based_on = electricity - fever.group = space_heating -- fever.type = producer - fever.technology_curve_type = tech_constant +- fever.type = producer - network_gas.profile = self: network_gas_input_curve - network_gas.type = consumer - electricity_output_capacity = 0.0 - free_co2_factor = 0.0 -- heat_output_capacity = 0.004900000000000001 +- heat_output_capacity = 0.02354 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 diff --git a/graphs/energy/nodes/households/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad index 40eddd9013..fb8f7173ad 100644 --- a/graphs/energy/nodes/households/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad @@ -7,11 +7,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.hydrogen = 1.08696 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, merit_household_space_heating_producers, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_space_heating_producers, application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households, mt_delivery_system_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -46,3 +45,4 @@ - heat_output_capacity = 0.0049 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_network_gas.converter.ad b/graphs/energy/nodes/households/households_space_heater_network_gas.converter.ad index ae066f86ae..85bb24b7f2 100644 --- a/graphs/energy/nodes/households/households_space_heater_network_gas.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, etmoses, application_group, aggregator_producer, + direct_emissions, demand_driven, heat_production, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households, ht_delivery_system_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.022 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_space_heater_wood_pellets.converter.ad b/graphs/energy/nodes/households/households_space_heater_wood_pellets.converter.ad index 3e38088f32..de6c36e543 100644 --- a/graphs/energy/nodes/households/households_space_heater_wood_pellets.converter.ad +++ b/graphs/energy/nodes/households/households_space_heater_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.82 - groups = [ - emissions, emissions_households, emissions_households_space_heating, - demand_driven, heat_production, application_group, aggregator_producer, wacc_households, - costs_building_and_installations_households, ht_delivery_system_households - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_households, costs_building_and_installations_households, ht_delivery_system_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.0101 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_space_heating diff --git a/graphs/energy/nodes/households/households_water_heater_coal.converter.ad b/graphs/energy/nodes/households/households_water_heater_coal.converter.ad index 335e8be387..d0ec6e9a4f 100644 --- a/graphs/energy/nodes/households/households_water_heater_coal.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.43 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, aggregator_producer, wacc_households, heat_production, application_group, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, aggregator_producer, wacc_households, heat_production, + application_group, costs_building_and_installations_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -27,3 +26,4 @@ - heat_output_capacity = 0.0099 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_combined_hydrogen.converter.ad b/graphs/energy/nodes/households/households_water_heater_combined_hydrogen.converter.ad index b25ef87a6f..630189f3bb 100644 --- a/graphs/energy/nodes/households/households_water_heater_combined_hydrogen.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_combined_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.72 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, application_group, aggregator_producer, wacc_households, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, heat_production, application_group, aggregator_producer, + wacc_households, costs_building_and_installations_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.022 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_combined_network_gas.converter.ad b/graphs/energy/nodes/households/households_water_heater_combined_network_gas.converter.ad index a947dd638a..f5a0f2f616 100644 --- a/graphs/energy/nodes/households/households_water_heater_combined_network_gas.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_combined_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, application_group, aggregator_producer, + direct_emissions, demand_driven, heat_production, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 0.022 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_crude_oil.converter.ad b/graphs/energy/nodes/households/households_water_heater_crude_oil.converter.ad index 5a2219229d..1150fc0a50 100644 --- a/graphs/energy/nodes/households/households_water_heater_crude_oil.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.85 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, application_group, aggregator_producer, wacc_households, heat_production, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, application_group, aggregator_producer, wacc_households, + heat_production, costs_building_and_installations_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -27,3 +26,4 @@ - heat_output_capacity = 0.0105 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_district_heating_ht_steam_hot_water.ad b/graphs/energy/nodes/households/households_water_heater_district_heating_ht_steam_hot_water.ad index 05cfdad33c..dcf2d5e712 100644 --- a/graphs/energy/nodes/households/households_water_heater_district_heating_ht_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_water_heater_district_heating_ht_steam_hot_water.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_district_heating_lt_steam_hot_water.ad b/graphs/energy/nodes/households/households_water_heater_district_heating_lt_steam_hot_water.ad index a309adabba..34dc83e1a7 100644 --- a/graphs/energy/nodes/households/households_water_heater_district_heating_lt_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_water_heater_district_heating_lt_steam_hot_water.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_district_heating_mt_steam_hot_water.ad b/graphs/energy/nodes/households/households_water_heater_district_heating_mt_steam_hot_water.ad index 67c40daeb6..09f2a18759 100644 --- a/graphs/energy/nodes/households/households_water_heater_district_heating_mt_steam_hot_water.ad +++ b/graphs/energy/nodes/households/households_water_heater_district_heating_mt_steam_hot_water.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, etmoses, application_group, aggregator_producer, wacc_households, + direct_emissions, demand_driven, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -30,3 +29,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.ad similarity index 60% rename from graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.converter.ad rename to graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.ad index 051cf5553d..a0201f7f16 100644 --- a/graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_heatpump_air_water_electricity.ad @@ -1,14 +1,15 @@ -- input.ambient_heat = 0.666666666666667 -- input.electricity = 0.333333333333333 +- input.ambient_heat = 0.565217 +- input.electricity = 0.434783 - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, heat_production, + etmoses, merit_household_hot_water_producers, application_group, + aggregator_producer, lv_net_demand, wacc_households, + merit_order_csv_include, costs_building_and_installations_households + ] - use = energetic +- sector_label = households_hot_water - presentation_group = heat_pumps - availability = 0.0 - full_load_hours = 0.0 @@ -22,19 +23,19 @@ - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.02 -- fever.base_cop = 1.86 -- fever.capacity.electricity = 0.002588997 -- fever.cop_per_degree = 0.043 +- fever.base_cop = 2.1044 +- fever.capacity.electricity = 0.002889 +- fever.cop_per_degree = 0.04074 - fever.efficiency_balanced_with = ambient_heat - fever.efficiency_based_on = electricity - fever.group = households_hot_water -- fever.type = producer - fever.technology_curve_type = default -- storage.cost_per_mwh = 50713.75 +- fever.type = producer +- storage.cost_per_mwh = 0.0 - storage.decay = 0.0 -- storage.volume = 0.005 +- storage.volume = 0.008723 - electricity_output_capacity = 0.0 - free_co2_factor = 0.0 -- heat_output_capacity = 0.01 +- heat_output_capacity = 0.0078 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 diff --git a/graphs/energy/nodes/households/households_water_heater_heatpump_ground_water_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_heatpump_ground_water_electricity.converter.ad index 44bd0c3a91..1a8bbf989a 100644 --- a/graphs/energy/nodes/households/households_water_heater_heatpump_ground_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_heatpump_ground_water_electricity.converter.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -33,3 +32,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_heatpump_pvt_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_heatpump_pvt_electricity.converter.ad index 2b1c2405a5..28cf3223f7 100644 --- a/graphs/energy/nodes/households/households_water_heater_heatpump_pvt_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_heatpump_pvt_electricity.converter.ad @@ -1,10 +1,9 @@ - use = energetic - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - presentation_group = heat_pumps - fever.group = households_hot_water - fever.type = producer @@ -33,5 +32,6 @@ - heat_output_capacity = 0.0078 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water ~ demand = 0.0 diff --git a/graphs/energy/nodes/households/households_water_heater_heatpump_surface_water_water_ts_electricity.ad b/graphs/energy/nodes/households/households_water_heater_heatpump_surface_water_water_ts_electricity.ad index 6a7ebcc548..b6d57ba89a 100644 --- a/graphs/energy/nodes/households/households_water_heater_heatpump_surface_water_water_ts_electricity.ad +++ b/graphs/energy/nodes/households/households_water_heater_heatpump_surface_water_water_ts_electricity.ad @@ -3,11 +3,10 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -38,3 +37,4 @@ - heat_output_capacity = 0.01 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad b/graphs/energy/nodes/households/households_water_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad index 06d6366f5b..afd52fbaba 100644 --- a/graphs/energy/nodes/households/households_water_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad +++ b/graphs/energy/nodes/households/households_water_heater_hybrid_crude_oil_heatpump_air_water_electricity.ad @@ -6,11 +6,10 @@ - output.useable_heat.electricity = 1.0 - output.useable_heat.crude_oil = 0.95 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -40,3 +39,4 @@ - heat_output_capacity = 0.0122 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.ad similarity index 72% rename from graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.converter.ad rename to graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.ad index f813795a66..6b94f399b7 100644 --- a/graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_hybrid_heatpump_air_water_electricity.ad @@ -1,15 +1,15 @@ -- output.cooling = 0.0 - output.loss = elastic -- output.useable_heat.ambient_heat = 1 -- output.useable_heat.electricity = 1 +- output.useable_heat.ambient_heat = 1.0 +- output.useable_heat.electricity = 1.0 - output.useable_heat.network_gas = 0.9 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, heat_production, + etmoses, merit_household_hot_water_producers, application_group, + aggregator_producer, lv_net_demand, wacc_households, + merit_order_csv_include, costs_building_and_installations_households + ] - use = energetic +- sector_label = households_hot_water - presentation_group = heat_pumps - graph_methods = [input] - availability = 0.0 @@ -24,21 +24,21 @@ - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.02 -- fever.base_cop = 1.86 -- fever.capacity.electricity = 0.001294498 +- fever.base_cop = 2.1044 +- fever.capacity.electricity = 0.001704 - fever.capacity.network_gas = 0.022 - fever.cop_cutoff = 6.0 -- fever.cop_per_degree = 0.043 +- fever.cop_per_degree = 0.04074 - fever.efficiency_balanced_with = ambient_heat - fever.efficiency_based_on = electricity - fever.group = households_hot_water -- fever.type = producer - fever.technology_curve_type = default +- fever.type = producer - network_gas.profile = self: network_gas_input_curve - network_gas.type = consumer - electricity_output_capacity = 0.0 - free_co2_factor = 0.0 -- heat_output_capacity = 0.0049 +- heat_output_capacity = 0.02354 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 diff --git a/graphs/energy/nodes/households/households_water_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad index 39de12567d..2f2737ce75 100644 --- a/graphs/energy/nodes/households/households_water_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_hybrid_hydrogen_heatpump_air_water_electricity.converter.ad @@ -7,11 +7,10 @@ - output.useable_heat.electricity = 1 - output.useable_heat.hydrogen = 0.951659795 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = heat_pumps - availability = 0.0 @@ -44,3 +43,4 @@ - heat_output_capacity = 0.0049 - households_supplied_per_unit = 1.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_network_gas.converter.ad b/graphs/energy/nodes/households/households_water_heater_network_gas.converter.ad index 059eb7ae3b..5b14963444 100644 --- a/graphs/energy/nodes/households/households_water_heater_network_gas.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.67 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, application_group, aggregator_producer, + direct_emissions, demand_driven, heat_production, etmoses, application_group, aggregator_producer, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 0.024 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_resistive_electricity.converter.ad b/graphs/energy/nodes/households/households_water_heater_resistive_electricity.converter.ad index f722332ece..cb5366b621 100644 --- a/graphs/energy/nodes/households/households_water_heater_resistive_electricity.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_resistive_electricity.converter.ad @@ -1,11 +1,10 @@ - output.loss = elastic - output.useable_heat = 0.95 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, heat_production, etmoses, merit_household_hot_water_producers, application_group, - aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, + direct_emissions, demand_driven, heat_production, etmoses, merit_household_hot_water_producers, + application_group, aggregator_producer, lv_net_demand, wacc_households, merit_order_csv_include, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 0.0015 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_solar_thermal.converter.ad b/graphs/energy/nodes/households/households_water_heater_solar_thermal.converter.ad index ae5457d213..b067a43784 100644 --- a/graphs/energy/nodes/households/households_water_heater_solar_thermal.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_solar_thermal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 1.0 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - heat_production, application_group, wacc_households, + direct_emissions, heat_production, application_group, wacc_households, costs_building_and_installations_households - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -25,3 +24,4 @@ - households_supplied_per_unit = 0.0 - land_use_per_unit = 1.62e-06 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/households/households_water_heater_wood_pellets.converter.ad b/graphs/energy/nodes/households/households_water_heater_wood_pellets.converter.ad index a499aa8227..0021c8aefc 100644 --- a/graphs/energy/nodes/households/households_water_heater_wood_pellets.converter.ad +++ b/graphs/energy/nodes/households/households_water_heater_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.82 - groups = [ - emissions, emissions_households, emissions_households_hot_water, - demand_driven, application_group, aggregator_producer, wacc_households, heat_production, - costs_building_and_installations_households - ] + direct_emissions, demand_driven, application_group, aggregator_producer, wacc_households, + heat_production, costs_building_and_installations_households + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -27,3 +26,4 @@ - heat_output_capacity = 0.0101 - households_supplied_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = households_hot_water diff --git a/graphs/energy/nodes/industry/industry_aluminium_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_aluminium_burner_network_gas.converter.ad index 5b463e253c..684ec5e24a 100644 --- a/graphs/energy/nodes/industry/industry_aluminium_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_aluminium_burner_network_gas.converter.ad @@ -1,10 +1,7 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.9 -- groups = [ - emissions, emissions_industry, emissions_industry_aluminium, - heat_production, wacc_proven_tech, costs_building_and_installations_industry - ] +- groups = [direct_emissions, heat_production, wacc_proven_tech, costs_building_and_installations_industry] - availability = 0.0 - free_co2_factor = 0.0 - full_load_hours = 2190.0 @@ -21,3 +18,4 @@ - construction_time = 0.0 - technical_lifetime = 15.0 - wacc = 0.04 +- sector_label = industry_aluminium diff --git a/graphs/energy/nodes/industry/industry_aluminium_external_coupling_node.ad b/graphs/energy/nodes/industry/industry_aluminium_external_coupling_node.ad index 5ddda28647..58ef84a83c 100644 --- a/graphs/energy/nodes/industry/industry_aluminium_external_coupling_node.ad +++ b/graphs/energy/nodes/industry/industry_aluminium_external_coupling_node.ad @@ -10,9 +10,9 @@ - output.loss = elastic - output.not_defined = 0.016190 - groups = [ - emissions, emissions_industry, emissions_industry_aluminium, - application_group, mv_net_demand, costs_building_and_installations_industry, wacc_proven_tech - ] + direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry, + wacc_proven_tech + ] - free_co2_factor = 0.0 - full_load_hours = 2190.0 - takes_part_in_ets = 1.0 @@ -27,3 +27,4 @@ - construction_time = 0.0 - technical_lifetime = 15.0 - wacc = 0.04 +- sector_label = industry_aluminium diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_coal.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_coal.converter.ad index dafdecd2b3..ece5e0d97b 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_coal.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, chemical_industry, fertilizers_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, fertilizers_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_crude_oil.converter.ad index 021fa36c4d..8bc7aefbe5 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, chemical_industry, fertilizers_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, fertilizers_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_hydrogen.converter.ad index 2c222610d4..693443f27a 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, chemical_industry, fertilizers_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, fertilizers_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - hydrogen.type = consumer @@ -28,3 +27,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_network_gas.converter.ad index ac19cf9d8f..1dea3fcbe1 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, chemical_industry, fertilizers_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, fertilizers_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - network_gas.profile = industry_fertilizers_heat @@ -29,3 +28,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_wood_pellets.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_wood_pellets.converter.ad index f24f02b689..e2d9c91721 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, chemical_industry, fertilizers_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, fertilizers_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_external_coupling_node_non_energetic.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_external_coupling_node_non_energetic.ad index d9837d2f9a..182f765be7 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_external_coupling_node_non_energetic.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_external_coupling_node_non_energetic.ad @@ -1,9 +1,8 @@ - use = non_energetic - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - chemical_industry, fertilizers_industry, non_energetic_use, useful_demand_non_energetic, - useful_demand, application_group - ] + direct_emissions, chemical_industry, fertilizers_industry, non_energetic_use, + useful_demand_non_energetic, useful_demand, application_group + ] - free_co2_factor = 1.0 - input.coal = 1.0 - input.network_gas = 0.0 @@ -11,3 +10,4 @@ - input.crude_oil = 0.0 - input.hydrogen = 0.0 - input.ammonia = 0.0 +- sector_label = industry_fertilizers diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_hydrogen_electricity.ad index 1e17d19850..8d04b5707f 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_hydrogen_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h, - fertilizers_industry - ] + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, + costs_storage_and_conversion_p2h, fertilizers_industry + ] - presentation_group = p2h - merit_order.demand_profile = industry_fertilizers_heat - merit_order.demand_source = industry_chemicals_fertilizers_hydrogen_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_fertilizers ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_network_gas_electricity.ad index 061bb0ef58..1900737421 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_flexibility_p2h_network_gas_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, costs_storage_and_conversion_p2h, - fertilizers_industry - ] + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, + costs_storage_and_conversion_p2h, fertilizers_industry + ] - presentation_group = p2h - merit_order.demand_profile = industry_fertilizers_heat - merit_order.demand_source = industry_chemicals_fertilizers_network_gas_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_fertilizers ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_steam_methane_reformer_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_steam_methane_reformer_hydrogen.converter.ad index fd08e6d934..be2a56fe46 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_fertilizers_steam_methane_reformer_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_fertilizers_steam_methane_reformer_hydrogen.converter.ad @@ -1,12 +1,9 @@ -- use = energetic +- use = non_energetic - output.hydrogen = 0.77 - output.loss = elastic - output.useable_heat = 0.12285714285714285 - graph_methods = [input] -- groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, - wacc_proven_tech, costs_building_and_installations_industry - ] +- groups = [direct_emissions, wacc_proven_tech, costs_building_and_installations_industry] - availability = 0.9 - free_co2_factor = 0.0 - full_load_hours = 7500.0 @@ -23,6 +20,7 @@ - construction_time = 3.0 - technical_lifetime = 30.0 - wacc = 0.04 +- sector_label = industry_fertilizers ~ input.network_gas = EFFICIENCY(industry_chemicals_fertilizers_steam_methane_reformer_hydrogen, input, network_gas) diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_bionaphtha.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_bionaphtha.ad index 72949951c8..4e98b219fa 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_bionaphtha.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_bionaphtha.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +22,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 100.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_coal.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_coal.converter.ad index 6b533f2bbe..39533dd25c 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_coal.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_crude_oil.converter.ad index 6df1f4b4f9..ba0ce522d6 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_hydrogen.converter.ad index d77a183649..e5c9ec1f90 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_naphtha.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_naphtha.ad index 72949951c8..4e98b219fa 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_naphtha.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_naphtha.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +22,4 @@ - free_co2_factor = 0.0 - heat_output_capacity = 100.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_network_gas.converter.ad index 323c2ee625..638e3d5768 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_burner_wood_pellets.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_burner_wood_pellets.converter.ad index 44bc264580..a47e1ca235 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_hydrogen_electricity.ad index ba4caf8ff1..fe3e011ef0 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_hydrogen_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, other_chemical_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, other_chemical_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_chemicals_heat - merit_order.demand_source = industry_chemicals_other_hydrogen_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_chemicals ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_network_gas_electricity.ad index 0b3654d490..33c7eb4e89 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_flexibility_p2h_network_gas_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, other_chemical_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, other_chemical_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_chemicals_heat - merit_order.demand_source = industry_chemicals_other_network_gas_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_chemicals ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_heater_electricity.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_heater_electricity.converter.ad index e4ab93c685..9ec833b7e8 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_heater_electricity.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_heater_electricity.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, mv_net_demand, - wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, + mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.99 @@ -28,3 +27,4 @@ - heat_output_capacity = 50.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_heatpump_water_water_electricity.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_heatpump_water_water_electricity.converter.ad index ccd175f015..7ff16ed27d 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_heatpump_water_water_electricity.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_heatpump_water_water_electricity.converter.ad @@ -2,10 +2,9 @@ - input.electricity = 0.26316 - output.useable_heat = 1 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, mv_net_demand, - wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, + mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 1.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_other_steam_recompression_electricity.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_other_steam_recompression_electricity.converter.ad index 8028d09d20..709c8b7f4b 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_other_steam_recompression_electricity.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_other_steam_recompression_electricity.converter.ad @@ -2,10 +2,9 @@ - input.electricity = 0.092592593 - output.useable_heat = 1 - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, - heat_production, chemical_industry, other_chemical_industry, application_group, mv_net_demand, - wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, other_chemical_industry, application_group, + mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 1.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 43.1 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_chemicals diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_coal.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_coal.converter.ad index 8aea8ce819..a3ec103222 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_coal.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, chemical_industry, refineries_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, refineries_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_refineries diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_crude_oil.converter.ad index 05ba7aa486..75c85df6e4 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, chemical_industry, refineries_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, refineries_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_refineries diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_hydrogen.converter.ad index 01a40d6f13..14f6c9efd0 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, chemical_industry, refineries_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, refineries_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_refineries diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_network_gas.converter.ad index e2b7b0ed11..37fe179877 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, chemical_industry, refineries_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, refineries_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_refineries diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_wood_pellets.converter.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_wood_pellets.converter.ad index 4a5421a558..c96d4d65c1 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, chemical_industry, refineries_industry, application_group, wacc_proven_tech, - costs_building_and_installations_industry - ] + direct_emissions, heat_production, chemical_industry, refineries_industry, application_group, + wacc_proven_tech, costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_refineries diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity.ad index 058bee97d0..adca90ea84 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, refineries_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, refineries_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_refineries_heat - merit_order.demand_source = industry_chemicals_refineries_hydrogen_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_refineries ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity.ad index 4016beb679..aeac581f6a 100644 --- a/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/industry/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_refineries, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, refineries_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, refineries_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_refineries_heat - merit_order.demand_source = industry_chemicals_refineries_network_gas_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_refineries ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_chp_combined_cycle_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_chp_combined_cycle_gas_power_fuelmix.ad index 938a367a2f..f1b6b17525 100644 --- a/graphs/energy/nodes/industry/industry_chp_combined_cycle_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_chp_combined_cycle_gas_power_fuelmix.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -28,6 +27,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_chp_combined_cycle_gas_power_fuelmix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_chp_combined_cycle_gas_power_fuelmix, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_chp_engine_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_chp_engine_gas_power_fuelmix.ad index c4f872ceb9..4b2398355f 100644 --- a/graphs/energy/nodes/industry/industry_chp_engine_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_chp_engine_gas_power_fuelmix.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -27,6 +26,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_chp_engine_gas_power_fuelmix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_chp_engine_gas_power_fuelmix, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_chp_turbine_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_chp_turbine_gas_power_fuelmix.ad index af12ebe986..bdc3a479b1 100644 --- a/graphs/energy/nodes/industry/industry_chp_turbine_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_chp_turbine_gas_power_fuelmix.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -27,6 +26,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_chp_turbine_gas_power_fuelmix, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_chp_turbine_gas_power_fuelmix, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_chp_turbine_hydrogen.ad b/graphs/energy/nodes/industry/industry_chp_turbine_hydrogen.ad index 806172a13b..5aeedea406 100644 --- a/graphs/energy/nodes/industry/industry_chp_turbine_hydrogen.ad +++ b/graphs/energy/nodes/industry/industry_chp_turbine_hydrogen.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.steam_hot_water = 0.4147157190635451 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -29,6 +28,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_chp_ultra_supercritical_coal.ad b/graphs/energy/nodes/industry/industry_chp_ultra_supercritical_coal.ad index 69e2d49635..d5810d0304 100644 --- a/graphs/energy/nodes/industry/industry_chp_ultra_supercritical_coal.ad +++ b/graphs/energy/nodes/industry/industry_chp_ultra_supercritical_coal.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_chp_ultra_supercritical_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_chp_ultra_supercritical_coal, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_chp_wood_pellets.ad b/graphs/energy/nodes/industry/industry_chp_wood_pellets.ad index fc518f825d..b8f9983b3b 100644 --- a/graphs/energy/nodes/industry/industry_chp_wood_pellets.ad +++ b/graphs/energy/nodes/industry/industry_chp_wood_pellets.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, electricity_production, dispatchable_production, heat_production, mv_net_supply, - wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, electricity_production, dispatchable_production, heat_production, + mv_net_supply, wacc_proven_tech, costs_production_chp_plants, sankey_conversion_group + ] - use = energetic - presentation_group = chps - graph_methods = [demand, output, full_load_hours] @@ -25,6 +24,7 @@ - merit_order.type = producer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_chp_wood_pellets, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_chp_wood_pellets, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_heat_backup_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_heat_backup_burner_network_gas.converter.ad index 0e5c89bc3d..0a57d04cab 100644 --- a/graphs/energy/nodes/industry/industry_heat_backup_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_heat_backup_burner_network_gas.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -25,3 +25,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production diff --git a/graphs/energy/nodes/industry/industry_heat_burner_coal.ad b/graphs/energy/nodes/industry/industry_heat_burner_coal.ad index 34d42fa156..d8fc4d89de 100644 --- a/graphs/energy/nodes/industry/industry_heat_burner_coal.ad +++ b/graphs/energy/nodes/industry/industry_heat_burner_coal.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -23,6 +22,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_heat_burner_coal, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_heat_burner_coal, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_heat_burner_crude_oil.ad b/graphs/energy/nodes/industry/industry_heat_burner_crude_oil.ad index a6b4183b9d..da8ed040f2 100644 --- a/graphs/energy/nodes/industry/industry_heat_burner_crude_oil.ad +++ b/graphs/energy/nodes/industry/industry_heat_burner_crude_oil.ad @@ -1,9 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -23,6 +22,7 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_heat_burner_crude_oil, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_heat_burner_crude_oil, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_heat_burner_hydrogen.ad b/graphs/energy/nodes/industry/industry_heat_burner_hydrogen.ad index 9833a9d3d5..0f6713eee5 100644 --- a/graphs/energy/nodes/industry/industry_heat_burner_hydrogen.ad +++ b/graphs/energy/nodes/industry/industry_heat_burner_hydrogen.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -26,6 +25,7 @@ - free_co2_factor = 0.0 - heat_output_capacity = 50.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 7900.0 diff --git a/graphs/energy/nodes/industry/industry_heat_burner_lignite.ad b/graphs/energy/nodes/industry/industry_heat_burner_lignite.ad index 67c1c4f08b..455eabe0a1 100644 --- a/graphs/energy/nodes/industry/industry_heat_burner_lignite.ad +++ b/graphs/energy/nodes/industry/industry_heat_burner_lignite.ad @@ -1,8 +1,8 @@ - output.loss = elastic - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, heat_production, wacc_proven_tech, costs_production_heat_plants, + sankey_conversion_group + ] - use = energetic - presentation_group = traditional_heat - graph_methods = [demand, output, full_load_hours] @@ -22,6 +22,7 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = CENTRAL_PRODUCTION(industry_heat_burner_lignite, demand) ~ full_load_hours = CENTRAL_PRODUCTION(industry_heat_burner_lignite, full_load_hours) diff --git a/graphs/energy/nodes/industry/industry_heat_combined_cycle_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_heat_combined_cycle_gas_power_fuelmix.ad index 91330e779b..1b99af80e6 100644 --- a/graphs/energy/nodes/industry/industry_heat_combined_cycle_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_heat_combined_cycle_gas_power_fuelmix.ad @@ -7,10 +7,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.9 @@ -30,6 +29,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_heat_engine_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_heat_engine_gas_power_fuelmix.ad index dbbb94a0c2..9fcf3f8727 100644 --- a/graphs/energy/nodes/industry/industry_heat_engine_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_heat_engine_gas_power_fuelmix.ad @@ -7,10 +7,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.95 @@ -30,6 +29,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_heat_turbine_gas_power_fuelmix.ad b/graphs/energy/nodes/industry/industry_heat_turbine_gas_power_fuelmix.ad index fbfe5585da..206ef64e61 100644 --- a/graphs/energy/nodes/industry/industry_heat_turbine_gas_power_fuelmix.ad +++ b/graphs/energy/nodes/industry/industry_heat_turbine_gas_power_fuelmix.ad @@ -7,10 +7,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.9 @@ -30,6 +29,7 @@ - network_gas.type = consumer - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_heat_turbine_hydrogen.ad b/graphs/energy/nodes/industry/industry_heat_turbine_hydrogen.ad index 88f45adb7a..bd527991f2 100644 --- a/graphs/energy/nodes/industry/industry_heat_turbine_hydrogen.ad +++ b/graphs/energy/nodes/industry/industry_heat_turbine_hydrogen.ad @@ -7,10 +7,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.9 @@ -30,6 +29,7 @@ - hydrogen.subtype = generic - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_heat_ultra_supercritical_coal.ad b/graphs/energy/nodes/industry/industry_heat_ultra_supercritical_coal.ad index 31f9d9c24c..6d14c51acd 100644 --- a/graphs/energy/nodes/industry/industry_heat_ultra_supercritical_coal.ad +++ b/graphs/energy/nodes/industry/industry_heat_ultra_supercritical_coal.ad @@ -9,10 +9,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.9 @@ -29,6 +28,7 @@ - wacc = 0.04 - free_co2_factor = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_heat_well_geothermal.converter.ad b/graphs/energy/nodes/industry/industry_heat_well_geothermal.converter.ad index 5e22831673..e441aa836c 100644 --- a/graphs/energy/nodes/industry/industry_heat_well_geothermal.converter.ad +++ b/graphs/energy/nodes/industry/industry_heat_well_geothermal.converter.ad @@ -2,10 +2,9 @@ - input.geothermal = 0.9566 - output.steam_hot_water = 1.0 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, non_final_electricity_demand_converters, - costs_production_heat_plants, sankey_conversion_group - ] + direct_emissions, preset_demand, heat_production, wacc_proven_tech, + non_final_electricity_demand_converters, costs_production_heat_plants, sankey_conversion_group + ] - use = energetic - presentation_group = heat_pumps - graph_methods = [demand] @@ -29,5 +28,6 @@ - heat_output_capacity = 30.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = EB("industry", geothermal) diff --git a/graphs/energy/nodes/industry/industry_heat_wood_pellets.ad b/graphs/energy/nodes/industry/industry_heat_wood_pellets.ad index 24859a4d36..e8bf78a97b 100644 --- a/graphs/energy/nodes/industry/industry_heat_wood_pellets.ad +++ b/graphs/energy/nodes/industry/industry_heat_wood_pellets.ad @@ -7,10 +7,9 @@ - output.loss = elastic - output.steam_hot_water = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_electricity_and_heat_production, - preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, + direct_emissions, preset_demand, heat_production, wacc_proven_tech, costs_production_heat_plants, sankey_conversion_group - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.9 @@ -27,6 +26,7 @@ - wacc = 0.04 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_electricity_and_heat_production ~ demand = 0.0 ~ full_load_hours = 8300.0 diff --git a/graphs/energy/nodes/industry/industry_other_food_burner_coal.converter.ad b/graphs/energy/nodes/industry/industry_other_food_burner_coal.converter.ad index 0b26f8f06c..d9af7acd86 100644 --- a/graphs/energy/nodes/industry/industry_other_food_burner_coal.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_burner_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, food_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_food_burner_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_other_food_burner_crude_oil.converter.ad index 2d51b518fa..59d752dc8f 100644 --- a/graphs/energy/nodes/industry/industry_other_food_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, food_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_food_burner_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_other_food_burner_hydrogen.converter.ad index 91c5327c3d..6533c61902 100644 --- a/graphs/energy/nodes/industry/industry_other_food_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, food_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_food_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_other_food_burner_network_gas.converter.ad index fc4e4767da..623a7e976a 100644 --- a/graphs/energy/nodes/industry/industry_other_food_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, food_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_food_burner_wood_pellets.converter.ad b/graphs/energy/nodes/industry/industry_other_food_burner_wood_pellets.converter.ad index c4b081781d..924a19d29a 100644 --- a/graphs/energy/nodes/industry/industry_other_food_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, food_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_hydrogen_electricity.ad index 1a969eb783..54a841c364 100644 --- a/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_hydrogen_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, food_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, food_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_other_heat - merit_order.demand_source = industry_other_food_hydrogen_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_food ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_network_gas_electricity.ad index 8380134218..365ba07cf7 100644 --- a/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/industry/industry_other_food_flexibility_p2h_network_gas_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, food_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, food_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_other_heat - merit_order.demand_source = industry_other_food_network_gas_hybrid_heat @@ -33,5 +32,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_food ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_other_food_heater_electricity.converter.ad b/graphs/energy/nodes/industry/industry_other_food_heater_electricity.converter.ad index 49ae5f49df..fd56e973af 100644 --- a/graphs/energy/nodes/industry/industry_other_food_heater_electricity.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_food_heater_electricity.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_food, - heat_production, food_industry, other_industry, application_group, mv_net_demand, + direct_emissions, heat_production, food_industry, other_industry, application_group, mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.99 @@ -28,3 +27,4 @@ - heat_output_capacity = 50.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_food diff --git a/graphs/energy/nodes/industry/industry_other_metals_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_other_metals_burner_network_gas.converter.ad index 63441f6241..870e2a3ed5 100644 --- a/graphs/energy/nodes/industry/industry_other_metals_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_metals_burner_network_gas.converter.ad @@ -1,10 +1,7 @@ - use = energetic - output.loss = elastic - output.useable_heat = 0.9 -- groups = [ - emissions, emissions_industry, emissions_industry_other_metals, - heat_production, wacc_proven_tech, costs_building_and_installations_industry - ] +- groups = [direct_emissions, heat_production, wacc_proven_tech, costs_building_and_installations_industry] - presentation_group = traditional_heat - availability = 0.0 - free_co2_factor = 0.0 @@ -24,6 +21,7 @@ - construction_time = 0.0 - technical_lifetime = 15.0 - wacc = 0.04 +- sector_label = industry_other_metals ~ input.coal = EFFICIENCY(industry_other_metals_burner_network_gas, input, coal) diff --git a/graphs/energy/nodes/industry/industry_other_metals_external_coupling_node.ad b/graphs/energy/nodes/industry/industry_other_metals_external_coupling_node.ad index a3d853c04f..df5c1746f6 100644 --- a/graphs/energy/nodes/industry/industry_other_metals_external_coupling_node.ad +++ b/graphs/energy/nodes/industry/industry_other_metals_external_coupling_node.ad @@ -12,9 +12,8 @@ - input.network_gas = 0.0 - input.crude_oil = 0.0 - groups = [ - emissions, emissions_industry, emissions_industry_other_metals, - application_group, costs_building_and_installations_industry, wacc_proven_tech - ] + direct_emissions, application_group, costs_building_and_installations_industry, wacc_proven_tech + ] - free_co2_factor = 0.0 - full_load_hours = 2190.0 - takes_part_in_ets = 1.0 @@ -29,3 +28,4 @@ - construction_time = 0.0 - technical_lifetime = 15.0 - wacc = 0.04 +- sector_label = industry_other_metals diff --git a/graphs/energy/nodes/industry/industry_other_paper_burner_coal.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_burner_coal.converter.ad index b851076e9b..b176a7e07f 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_burner_coal.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_burner_coal.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_other_paper_burner_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_burner_crude_oil.converter.ad index 8b905bb8ab..e77f9afd67 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_burner_crude_oil.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.83 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_other_paper_burner_hydrogen.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_burner_hydrogen.converter.ad index 0d395689d8..f64c8262fd 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_burner_hydrogen.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_burner_hydrogen.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -28,3 +27,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_other_paper_burner_network_gas.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_burner_network_gas.converter.ad index 5ea5aca781..ef9f0fe16e 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_burner_network_gas.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -29,3 +28,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_other_paper_burner_wood_pellets.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_burner_wood_pellets.converter.ad index 00faa39a81..170d5cef37 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_burner_wood_pellets.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, + direct_emissions, heat_production, paper_industry, other_industry, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -24,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_hydrogen_electricity.ad b/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_hydrogen_electricity.ad index 2bd5adf45e..dcf5513a3c 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_hydrogen_electricity.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_hydrogen_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, paper_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, paper_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_other_heat - merit_order.demand_source = industry_other_paper_hydrogen_hybrid_heat @@ -34,5 +33,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_paper ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_network_gas_electricity.ad b/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_network_gas_electricity.ad index 556755d2c1..d28e5a1c4b 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_network_gas_electricity.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_flexibility_p2h_network_gas_electricity.ad @@ -2,10 +2,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, mv_net_flexibility, p2h, wacc_proven_tech, paper_industry, + direct_emissions, heat_production, mv_net_flexibility, p2h, wacc_proven_tech, paper_industry, costs_storage_and_conversion_p2h - ] + ] - presentation_group = p2h - merit_order.demand_profile = industry_other_heat - merit_order.demand_source = industry_other_paper_network_gas_hybrid_heat @@ -33,5 +32,6 @@ - technical_lifetime = 15.0 - wacc = 0.04 - max_consumption_price = 22.0 +- sector_label = industry_paper ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_other_paper_heater_electricity.converter.ad b/graphs/energy/nodes/industry/industry_other_paper_heater_electricity.converter.ad index 7c7a0b5518..0e4d9d99fe 100644 --- a/graphs/energy/nodes/industry/industry_other_paper_heater_electricity.converter.ad +++ b/graphs/energy/nodes/industry/industry_other_paper_heater_electricity.converter.ad @@ -1,10 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.995 - groups = [ - emissions, emissions_industry, emissions_industry_paper, - heat_production, paper_industry, other_industry, application_group, mv_net_demand, + direct_emissions, heat_production, paper_industry, other_industry, application_group, mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry - ] + ] - use = energetic - presentation_group = traditional_heat - availability = 0.99 @@ -28,3 +27,4 @@ - heat_output_capacity = 50.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = industry_paper diff --git a/graphs/energy/nodes/industry/industry_refinery_transformation_crude_oil.converter.ad b/graphs/energy/nodes/industry/industry_refinery_transformation_crude_oil.converter.ad index 1c8a993650..7e806f4556 100644 --- a/graphs/energy/nodes/industry/industry_refinery_transformation_crude_oil.converter.ad +++ b/graphs/energy/nodes/industry/industry_refinery_transformation_crude_oil.converter.ad @@ -1,11 +1,9 @@ - output.loss = elastic -- groups = [ - emissions, emissions_industry, emissions_industry_refineries, - chemical_industry, sankey_conversion_group - ] -- use = energetic +- groups = [direct_emissions, chemical_industry, sankey_conversion_group] +- use = non_energetic - graph_methods = [output] - free_co2_factor = 0.0 +- sector_label = industry_refineries ~ output.refinery_gas = EFFICIENCY(industry_refinery_transformation_crude_oil, output, refinery_gas) ~ output.lpg = EFFICIENCY(industry_refinery_transformation_crude_oil, output, lpg) diff --git a/graphs/energy/nodes/industry/industry_steel_blastfurnace_bof.ad b/graphs/energy/nodes/industry/industry_steel_blastfurnace_bof.ad index 69426a7124..2d75630752 100644 --- a/graphs/energy/nodes/industry/industry_steel_blastfurnace_bof.ad +++ b/graphs/energy/nodes/industry/industry_steel_blastfurnace_bof.ad @@ -1,9 +1,6 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, costs_building_and_installations_industry - ] +- groups = [direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry] - graph_methods = [input, output] - merit_order.group = industry_metals_electricity - merit_order.level = mv @@ -23,6 +20,7 @@ - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel ~ input.electricity = EFFICIENCY(industry_steel_blastfurnace_bof, input, electricity) diff --git a/graphs/energy/nodes/industry/industry_steel_cyclonefurnace_bof.ad b/graphs/energy/nodes/industry/industry_steel_cyclonefurnace_bof.ad index 30dfc1452b..6cecafc76d 100644 --- a/graphs/energy/nodes/industry/industry_steel_cyclonefurnace_bof.ad +++ b/graphs/energy/nodes/industry/industry_steel_cyclonefurnace_bof.ad @@ -1,8 +1,5 @@ - use = energetic -- groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, costs_building_and_installations_industry - ] +- groups = [direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry] - input.coal = 0.759493670886076 - input.electricity = 0.11967779056386653 - input.network_gas = 0.12082853855005755 @@ -26,3 +23,4 @@ - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel diff --git a/graphs/energy/nodes/industry/industry_steel_dri_hydrogen.ad b/graphs/energy/nodes/industry/industry_steel_dri_hydrogen.ad index 8017d5008e..6b0f05c67a 100644 --- a/graphs/energy/nodes/industry/industry_steel_dri_hydrogen.ad +++ b/graphs/energy/nodes/industry/industry_steel_dri_hydrogen.ad @@ -1,8 +1,5 @@ - use = energetic -- groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, costs_building_and_installations_industry - ] +- groups = [direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry] - input.coal = 0.06183190106895829 - input.electricity = 0.21127646195766087 - input.hydrogen = 0.6262837979459234 @@ -26,3 +23,4 @@ - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel diff --git a/graphs/energy/nodes/industry/industry_steel_dri_network_gas.ad b/graphs/energy/nodes/industry/industry_steel_dri_network_gas.ad index f45adf0c45..560f7c3322 100644 --- a/graphs/energy/nodes/industry/industry_steel_dri_network_gas.ad +++ b/graphs/energy/nodes/industry/industry_steel_dri_network_gas.ad @@ -1,8 +1,5 @@ - use = energetic -- groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, costs_building_and_installations_industry - ] +- groups = [direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry] - input.coal = 0.05955986270946901 - input.electricity = 0.2035130224106602 - input.network_gas = 0.7369271148798708 @@ -25,3 +22,4 @@ - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel diff --git a/graphs/energy/nodes/industry/industry_steel_external_coupling_node.ad b/graphs/energy/nodes/industry/industry_steel_external_coupling_node.ad index a67d096d04..e876dcaf8f 100644 --- a/graphs/energy/nodes/industry/industry_steel_external_coupling_node.ad +++ b/graphs/energy/nodes/industry/industry_steel_external_coupling_node.ad @@ -4,9 +4,9 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, application_group, mv_net_demand, wacc_proven_tech, + costs_building_and_installations_industry + ] - input.coal = 0.0 - input.coal_gas = 0.5683 - input.cokes = 0.0008 @@ -35,5 +35,6 @@ - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel ~ demand = 0.0 diff --git a/graphs/energy/nodes/industry/industry_steel_scrap_hbi_eaf.ad b/graphs/energy/nodes/industry/industry_steel_scrap_hbi_eaf.ad index f6448a6744..bf3897d20c 100644 --- a/graphs/energy/nodes/industry/industry_steel_scrap_hbi_eaf.ad +++ b/graphs/energy/nodes/industry/industry_steel_scrap_hbi_eaf.ad @@ -1,8 +1,5 @@ - use = energetic -- groups = [ - emissions, emissions_industry, emissions_industry_steel, - application_group, mv_net_demand, costs_building_and_installations_industry - ] +- groups = [direct_emissions, application_group, mv_net_demand, costs_building_and_installations_industry] - graph_methods = [input, output] - output.loss = elastic - merit_order.group = industry_metals_electricity @@ -23,6 +20,7 @@ - wacc = 0.04 - takes_part_in_ets = 1.0 +- sector_label = industry_steel ~ input.electricity = EFFICIENCY(industry_steel_scrap_hbi_eaf, input, electricity) diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_coal.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_coal.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_coal.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_coal.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_cokes.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_cokes.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_cokes.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_cokes.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_crude_oil.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_crude_oil.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_crude_oil.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_crude_oil.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_electricity.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_electricity.demand.ad index 2117c2144f..fbd92eeaeb 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_electricity.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_electricity.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, application_group, other_non_specified_industry - ] + direct_emissions, preset_demand, useful_demand, application_group, other_non_specified_industry + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_hydrogen.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_hydrogen.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_hydrogen.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_hydrogen.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_network_gas.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_network_gas.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_network_gas.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_network_gas.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_useable_heat.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_useable_heat.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_useable_heat.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_useable_heat.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_wood_pellets.demand.ad b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_wood_pellets.demand.ad index d09b4e3456..5139639bba 100644 --- a/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_wood_pellets.demand.ad +++ b/graphs/energy/nodes/industry/industry_useful_demand_for_other_non_specified_wood_pellets.demand.ad @@ -1,6 +1,6 @@ - use = energetic - groups = [ - emissions, emissions_industry, emissions_industry_other, - preset_demand, useful_demand, other_non_specified_industry, application_group - ] + direct_emissions, preset_demand, useful_demand, other_non_specified_industry, application_group + ] - free_co2_factor = 0.0 +- sector_label = industry_other diff --git a/graphs/energy/nodes/other/other_burner_coal.converter.ad b/graphs/energy/nodes/other/other_burner_coal.converter.ad index 5e02eaf6ee..089f4b3e6a 100644 --- a/graphs/energy/nodes/other/other_burner_coal.converter.ad +++ b/graphs/energy/nodes/other/other_burner_coal.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.8 - groups = [ - emissions, emissions_other, emissions_other_heating, - heat_production, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, application_group, wacc_proven_tech, + costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +23,4 @@ - heat_output_capacity = 100.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 1.0 +- sector_label = other_heating diff --git a/graphs/energy/nodes/other/other_burner_crude_oil.converter.ad b/graphs/energy/nodes/other/other_burner_crude_oil.converter.ad index 20a960f67f..030c26055a 100644 --- a/graphs/energy/nodes/other/other_burner_crude_oil.converter.ad +++ b/graphs/energy/nodes/other/other_burner_crude_oil.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.788659793814433 - groups = [ - emissions, emissions_other, emissions_other_heating, - heat_production, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, application_group, wacc_proven_tech, + costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +23,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = other_heating diff --git a/graphs/energy/nodes/other/other_burner_network_gas.converter.ad b/graphs/energy/nodes/other/other_burner_network_gas.converter.ad index acf4890409..d8873256ff 100644 --- a/graphs/energy/nodes/other/other_burner_network_gas.converter.ad +++ b/graphs/energy/nodes/other/other_burner_network_gas.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.9 - groups = [ - emissions, emissions_other, emissions_other_heating, - heat_production, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, application_group, wacc_proven_tech, + costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +23,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = other_heating diff --git a/graphs/energy/nodes/other/other_burner_wood_pellets.converter.ad b/graphs/energy/nodes/other/other_burner_wood_pellets.converter.ad index 97a31ef133..4603298953 100644 --- a/graphs/energy/nodes/other/other_burner_wood_pellets.converter.ad +++ b/graphs/energy/nodes/other/other_burner_wood_pellets.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic - output.useable_heat = 0.760824742268041 - groups = [ - emissions, emissions_other, emissions_other_heating, - heat_production, application_group, wacc_proven_tech, costs_building_and_installations_industry - ] + direct_emissions, heat_production, application_group, wacc_proven_tech, + costs_building_and_installations_industry + ] - use = energetic - presentation_group = traditional_heat - availability = 0.0 @@ -23,3 +23,4 @@ - heat_output_capacity = 5.0 - land_use_per_unit = 0.0 - takes_part_in_ets = 0.0 +- sector_label = other_heating diff --git a/graphs/energy/nodes/other/other_heater_district_heating_ht_steam_hot_water.ad b/graphs/energy/nodes/other/other_heater_district_heating_ht_steam_hot_water.ad index b8f3f50c3e..a00dcb9911 100644 --- a/graphs/energy/nodes/other/other_heater_district_heating_ht_steam_hot_water.ad +++ b/graphs/energy/nodes/other/other_heater_district_heating_ht_steam_hot_water.ad @@ -1,6 +1,4 @@ - use = energetic -- groups = [ - emissions, emissions_other, emissions_other_heating, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = other_heating diff --git a/graphs/energy/nodes/transport/transport_bicycle_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_bicycle_using_electricity.converter.ad index 1e60c0e268..995ca0946c 100644 --- a/graphs/energy/nodes/transport/transport_bicycle_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_bicycle_using_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 28.57142857142857 -- groups = [ - emissions, emissions_transport, emissions_transport_bicycles, - application_group, passenger_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, passenger_transport, mv_net_demand] - free_co2_factor = 0.0 - merit_order.group = electric_bikes - merit_order.level = mv - merit_order.type = consumer +- sector_label = transport_bicycles diff --git a/graphs/energy/nodes/transport/transport_bicycle_using_human_energy.converter.ad b/graphs/energy/nodes/transport/transport_bicycle_using_human_energy.converter.ad index 65ae4a40ab..d1ab62300a 100644 --- a/graphs/energy/nodes/transport/transport_bicycle_using_human_energy.converter.ad +++ b/graphs/energy/nodes/transport/transport_bicycle_using_human_energy.converter.ad @@ -1,7 +1,5 @@ - use = energetic - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_bicycles, - application_group - ] +- groups = [direct_emissions, application_group] - free_co2_factor = 0.0 +- sector_label = transport_bicycles diff --git a/graphs/energy/nodes/transport/transport_bus_using_compressed_natural_gas.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_compressed_natural_gas.converter.ad index 9e1840636b..b79b644625 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_compressed_natural_gas.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_compressed_natural_gas.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.3821186912365564 -- groups = [ - emissions, emissions_transport, emissions_transport_buses, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_bus_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_diesel_mix.converter.ad index c3bfd347ca..e67f3bba09 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_diesel_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.2439068221129006 -- groups = [ - emissions, emissions_transport, emissions_transport_buses, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_bus_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_electricity.converter.ad index 1c61a2d1b7..001d15a97a 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_electricity.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic -- output.passenger_kms = 2.8361075544174135 +- output.passenger_kms = 1.763043 - groups = [ - emissions, emissions_transport, emissions_transport_buses, - inheritable_nou, application_group, passenger_transport, mv_net_demand, wacc_proven_tech - ] + direct_emissions, inheritable_nou, application_group, passenger_transport, mv_net_demand, + wacc_proven_tech + ] - use = energetic - availability = 1.0 - full_load_hours = 0.0 @@ -28,3 +28,4 @@ - electricity_output_capacity = 0.32 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_bus_using_gasoline_mix.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_gasoline_mix.converter.ad index c4617985d9..863031e66b 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_gasoline_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_gasoline_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.128615087898015 -- groups = [ - emissions, emissions_transport, emissions_transport_buses, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_bus_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_hydrogen.converter.ad index 82dcb24511..35f9179f0b 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_hydrogen.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.890738369611609 -- groups = [ - emissions, emissions_transport, emissions_transport_buses, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_bus_using_lng_mix.converter.ad b/graphs/energy/nodes/transport/transport_bus_using_lng_mix.converter.ad index 9e1840636b..b79b644625 100644 --- a/graphs/energy/nodes/transport/transport_bus_using_lng_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_bus_using_lng_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.3821186912365564 -- groups = [ - emissions, emissions_transport, emissions_transport_buses, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_buses diff --git a/graphs/energy/nodes/transport/transport_car_using_compressed_natural_gas.converter.ad b/graphs/energy/nodes/transport/transport_car_using_compressed_natural_gas.converter.ad index 71bca626c6..1d411e980b 100644 --- a/graphs/energy/nodes/transport/transport_car_using_compressed_natural_gas.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_compressed_natural_gas.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.6321178680961683 -- groups = [ - emissions, emissions_transport, emissions_transport_cars, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 - technical_lifetime = 15.0 +- sector_label = transport_cars diff --git a/graphs/energy/nodes/transport/transport_car_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_car_using_diesel_mix.converter.ad index 43c681b03a..465bbd52d7 100644 --- a/graphs/energy/nodes/transport/transport_car_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_diesel_mix.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.passenger_kms = 0.6986565910536597 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_cars, - inheritable_nou, application_group, passenger_transport - ] +- groups = [direct_emissions, inheritable_nou, application_group, passenger_transport] - free_co2_factor = 0.0 - technical_lifetime = 13.0 +- sector_label = transport_cars diff --git a/graphs/energy/nodes/transport/transport_car_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_car_using_electricity.converter.ad index 92332997df..34e36c4e22 100644 --- a/graphs/energy/nodes/transport/transport_car_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_electricity.converter.ad @@ -1,9 +1,9 @@ - output.loss = elastic -- output.passenger_kms = 2.0422269584645436 +- output.passenger_kms = 1.6375 - groups = [ - emissions, emissions_transport, emissions_transport_cars, - inheritable_nou, application_group, passenger_transport, lv_net_demand, wacc_proven_tech - ] + direct_emissions, inheritable_nou, application_group, passenger_transport, lv_net_demand, + wacc_proven_tech + ] - use = energetic - availability = 1.0 - full_load_hours = 0.0 @@ -28,3 +28,4 @@ - electricity_output_capacity = 0.0037 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = transport_cars diff --git a/graphs/energy/nodes/transport/transport_car_using_gasoline_mix.converter.ad b/graphs/energy/nodes/transport/transport_car_using_gasoline_mix.converter.ad index 4a392407aa..e8ed7f2260 100644 --- a/graphs/energy/nodes/transport/transport_car_using_gasoline_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_gasoline_mix.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.6321178680961683 -- groups = [ - emissions, emissions_transport, emissions_transport_cars, - inheritable_nou, application_group, passenger_transport - ] +- groups = [direct_emissions, inheritable_nou, application_group, passenger_transport] - free_co2_factor = 0.0 - technical_lifetime = 13.0 +- sector_label = transport_cars diff --git a/graphs/energy/nodes/transport/transport_car_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_car_using_hydrogen.converter.ad index 38f32b0b6f..c10936ff30 100644 --- a/graphs/energy/nodes/transport/transport_car_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_hydrogen.converter.ad @@ -1,9 +1,6 @@ - output.loss = elastic - output.passenger_kms = 1.3545382887775037 -- groups = [ - emissions, emissions_transport, emissions_transport_cars, - inheritable_nou, application_group, passenger_transport, wacc_unproven_tech - ] +- groups = [direct_emissions, inheritable_nou, application_group, passenger_transport, wacc_unproven_tech] - use = energetic - graph_methods = [demand] - full_load_hours = 0.0 @@ -19,5 +16,6 @@ - wacc = 0.07 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = transport_cars ~ demand = 0.0 diff --git a/graphs/energy/nodes/transport/transport_car_using_lpg.converter.ad b/graphs/energy/nodes/transport/transport_car_using_lpg.converter.ad index d6aa537ad6..5c8979c63a 100644 --- a/graphs/energy/nodes/transport/transport_car_using_lpg.converter.ad +++ b/graphs/energy/nodes/transport/transport_car_using_lpg.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.6637237615009768 -- groups = [ - emissions, emissions_transport, emissions_transport_cars, - inheritable_nou, application_group, passenger_transport - ] +- groups = [direct_emissions, inheritable_nou, application_group, passenger_transport] - free_co2_factor = 0.0 - technical_lifetime = 13.0 +- sector_label = transport_cars diff --git a/graphs/energy/nodes/transport/transport_freight_train_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_freight_train_using_diesel_mix.converter.ad index 1ae706053b..9380320104 100644 --- a/graphs/energy/nodes/transport/transport_freight_train_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_freight_train_using_diesel_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.freight_tonne_kms = 2.7027027027027026 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_freight_train_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_freight_train_using_electricity.converter.ad index 2a154fcb25..7f639ebb17 100644 --- a/graphs/energy/nodes/transport/transport_freight_train_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_freight_train_using_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.freight_tonne_kms = 7.142857142857142 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, freight_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, freight_transport, mv_net_demand] - free_co2_factor = 0.0 - merit_order.group = freight_trains - merit_order.level = mv - merit_order.type = consumer +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_freight_train_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_freight_train_using_hydrogen.converter.ad index 25bcf0d3f9..aa22d08190 100644 --- a/graphs/energy/nodes/transport/transport_freight_train_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_freight_train_using_hydrogen.converter.ad @@ -1,8 +1,6 @@ - output.freight_tonne_kms = 3.928571428571428 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - free_co2_factor = 0.0 +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_motorcycle_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_motorcycle_using_electricity.converter.ad index abfffa1bff..676e54dcf4 100644 --- a/graphs/energy/nodes/transport/transport_motorcycle_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_motorcycle_using_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.loss = elastic -- output.passenger_kms = 9.104792424818495 -- groups = [ - emissions, emissions_transport, emissions_transport_motorcycles, - application_group, passenger_transport, mv_net_demand - ] +- output.passenger_kms = 2.567705 +- groups = [direct_emissions, application_group, passenger_transport, mv_net_demand] - free_co2_factor = 0.0 - merit_order.group = electric_bikes - merit_order.level = mv - merit_order.type = consumer +- sector_label = transport_motorcycles diff --git a/graphs/energy/nodes/transport/transport_motorcycle_using_gasoline_mix.converter.ad b/graphs/energy/nodes/transport/transport_motorcycle_using_gasoline_mix.converter.ad index dfed5fec63..07329324a4 100644 --- a/graphs/energy/nodes/transport/transport_motorcycle_using_gasoline_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_motorcycle_using_gasoline_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.8906889761774772 -- groups = [ - emissions, emissions_transport, emissions_transport_motorcycles, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_motorcycles diff --git a/graphs/energy/nodes/transport/transport_passenger_train_using_coal.converter.ad b/graphs/energy/nodes/transport/transport_passenger_train_using_coal.converter.ad index ffb7df0e9a..b3199e8636 100644 --- a/graphs/energy/nodes/transport/transport_passenger_train_using_coal.converter.ad +++ b/graphs/energy/nodes/transport/transport_passenger_train_using_coal.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.500500901 -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_passenger_train_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_passenger_train_using_diesel_mix.converter.ad index b7bc19fce9..20be8d0e20 100644 --- a/graphs/energy/nodes/transport/transport_passenger_train_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_passenger_train_using_diesel_mix.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.5015027027027028 -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_passenger_train_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_passenger_train_using_electricity.converter.ad index 1203330579..1099edbc54 100644 --- a/graphs/energy/nodes/transport/transport_passenger_train_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_passenger_train_using_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 3.703706666666667 -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, passenger_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, passenger_transport, mv_net_demand] - free_co2_factor = 0.0 - merit_order.group = passenger_trains - merit_order.level = mv - merit_order.type = consumer +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_passenger_train_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_passenger_train_using_hydrogen.converter.ad index c225c473b4..5ad63c022c 100644 --- a/graphs/energy/nodes/transport/transport_passenger_train_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_passenger_train_using_hydrogen.converter.ad @@ -1,8 +1,6 @@ - output.loss = elastic - output.passenger_kms = 2.037038666666667 -- groups = [ - emissions, emissions_transport, emissions_transport_trains, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - use = energetic - free_co2_factor = 0.0 +- sector_label = transport_trains diff --git a/graphs/energy/nodes/transport/transport_plane_using_bio_ethanol.converter.ad b/graphs/energy/nodes/transport/transport_plane_using_bio_ethanol.converter.ad index 9ab4aea0f7..12fd0f5341 100644 --- a/graphs/energy/nodes/transport/transport_plane_using_bio_ethanol.converter.ad +++ b/graphs/energy/nodes/transport/transport_plane_using_bio_ethanol.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.17969198877075998 -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_aviation, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_domestic_aviation diff --git a/graphs/energy/nodes/transport/transport_plane_using_electricity.ad b/graphs/energy/nodes/transport/transport_plane_using_electricity.ad index 2a68a16c77..279f6bc92e 100644 --- a/graphs/energy/nodes/transport/transport_plane_using_electricity.ad +++ b/graphs/energy/nodes/transport/transport_plane_using_electricity.ad @@ -4,8 +4,6 @@ - merit_order.group = electric_planes - merit_order.level = mv - merit_order.type = consumer -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_aviation, - application_group, passenger_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, passenger_transport, mv_net_demand] - free_co2_factor = 0.0 +- sector_label = transport_domestic_aviation diff --git a/graphs/energy/nodes/transport/transport_plane_using_gasoline.converter.ad b/graphs/energy/nodes/transport/transport_plane_using_gasoline.converter.ad index 46cc053d3f..05330c56fe 100644 --- a/graphs/energy/nodes/transport/transport_plane_using_gasoline.converter.ad +++ b/graphs/energy/nodes/transport/transport_plane_using_gasoline.converter.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.3051009051128605 -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_aviation, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_domestic_aviation diff --git a/graphs/energy/nodes/transport/transport_plane_using_hydrogen.ad b/graphs/energy/nodes/transport/transport_plane_using_hydrogen.ad index e6b3a764b5..98b2fc53ef 100644 --- a/graphs/energy/nodes/transport/transport_plane_using_hydrogen.ad +++ b/graphs/energy/nodes/transport/transport_plane_using_hydrogen.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.519286631 -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_aviation, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_domestic_aviation diff --git a/graphs/energy/nodes/transport/transport_plane_using_kerosene_mix.ad b/graphs/energy/nodes/transport/transport_plane_using_kerosene_mix.ad index c0613024e1..38573a7380 100644 --- a/graphs/energy/nodes/transport/transport_plane_using_kerosene_mix.ad +++ b/graphs/energy/nodes/transport/transport_plane_using_kerosene_mix.ad @@ -1,8 +1,6 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 0.2857010428736964 -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_aviation, - application_group, passenger_transport - ] +- groups = [direct_emissions, application_group, passenger_transport] - free_co2_factor = 0.0 +- sector_label = transport_domestic_aviation diff --git a/graphs/energy/nodes/transport/transport_ship_using_ammonia.ad b/graphs/energy/nodes/transport/transport_ship_using_ammonia.ad index 1e3202fa83..3672147906 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_ammonia.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_ammonia.ad @@ -1,9 +1,7 @@ - use = energetic - output.freight_tonne_kms = 3.73393801965231 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_ship_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_ship_using_diesel_mix.converter.ad index c6d65bdfae..0bf40efd12 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_diesel_mix.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.freight_tonne_kms = 3.17460317460317 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_ship_using_electricity.ad b/graphs/energy/nodes/transport/transport_ship_using_electricity.ad index 953cd5a7aa..b8a1306dc9 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_electricity.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_electricity.ad @@ -4,9 +4,7 @@ - merit_order.group = electric_ships - merit_order.level = mv - merit_order.type = consumer -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, freight_transport, mv_net_demand] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_ship_using_hydrogen.ad b/graphs/energy/nodes/transport/transport_ship_using_hydrogen.ad index 30c1d13395..e112c512bf 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_hydrogen.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_hydrogen.ad @@ -1,9 +1,7 @@ - use = energetic - output.freight_tonne_kms = 3.40136054421769 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_ship_using_lng_mix.converter.ad b/graphs/energy/nodes/transport/transport_ship_using_lng_mix.converter.ad index c6d65bdfae..0bf40efd12 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_lng_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_lng_mix.converter.ad @@ -1,9 +1,7 @@ - use = energetic - output.freight_tonne_kms = 3.17460317460317 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_ship_using_methanol_mix.ad b/graphs/energy/nodes/transport/transport_ship_using_methanol_mix.ad index 9c7a1857ed..2011a166a3 100644 --- a/graphs/energy/nodes/transport/transport_ship_using_methanol_mix.ad +++ b/graphs/energy/nodes/transport/transport_ship_using_methanol_mix.ad @@ -1,9 +1,7 @@ - use = energetic - output.freight_tonne_kms = 2.34275 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_domestic_navigation, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - free_co2_factor = 0.0 - technical_lifetime = 25.0 +- sector_label = transport_domestic_navigation diff --git a/graphs/energy/nodes/transport/transport_tram_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_tram_using_electricity.converter.ad index da4a325263..14a5f342c9 100644 --- a/graphs/energy/nodes/transport/transport_tram_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_tram_using_electricity.converter.ad @@ -1,11 +1,9 @@ - use = energetic - output.loss = elastic - output.passenger_kms = 1.6339869281045751 -- groups = [ - emissions, emissions_transport, emissions_transport_trams_metros, - application_group, passenger_transport, mv_net_demand - ] +- groups = [direct_emissions, application_group, passenger_transport, mv_net_demand] - free_co2_factor = 0.0 - merit_order.group = passenger_trains - merit_order.level = mv - merit_order.type = consumer +- sector_label = transport_trams_metros diff --git a/graphs/energy/nodes/transport/transport_truck_using_compressed_natural_gas.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_compressed_natural_gas.converter.ad index bfeb47d82c..103d20e2df 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_compressed_natural_gas.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_compressed_natural_gas.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.9713473673525779 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trucks, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_truck_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_diesel_mix.converter.ad index bfeb47d82c..103d20e2df 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_diesel_mix.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.9713473673525779 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trucks, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_truck_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_electricity.converter.ad index 9ceaa9deea..1c59690ba5 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_electricity.converter.ad @@ -1,9 +1,9 @@ - output.freight_tonne_kms = 1.7491695887192016 - output.loss = elastic - groups = [ - emissions, emissions_transport, emissions_transport_trucks, - inheritable_nou, application_group, freight_transport, mv_net_demand, wacc_proven_tech - ] + direct_emissions, inheritable_nou, application_group, freight_transport, mv_net_demand, + wacc_proven_tech + ] - use = energetic - availability = 1.0 - full_load_hours = 0.0 @@ -28,3 +28,4 @@ - electricity_output_capacity = 0.375 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_truck_using_gasoline_mix.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_gasoline_mix.converter.ad index a691142bb1..284d7322a4 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_gasoline_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_gasoline_mix.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.881317856730362 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trucks, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 11.0 - free_co2_factor = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_truck_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_hydrogen.converter.ad index 091608aee5..06082a6e59 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_hydrogen.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 1.3427448901638577 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trucks, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_truck_using_lng_mix.converter.ad b/graphs/energy/nodes/transport/transport_truck_using_lng_mix.converter.ad index 5314c11fba..56d8e3cb8e 100644 --- a/graphs/energy/nodes/transport/transport_truck_using_lng_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_truck_using_lng_mix.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 1.0792748526139753 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_trucks, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_trucks diff --git a/graphs/energy/nodes/transport/transport_van_using_compressed_natural_gas.converter.ad b/graphs/energy/nodes/transport/transport_van_using_compressed_natural_gas.converter.ad index d31ff7280b..87ce2bb48c 100644 --- a/graphs/energy/nodes/transport/transport_van_using_compressed_natural_gas.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_compressed_natural_gas.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.022717905586307756 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_vans, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_vans diff --git a/graphs/energy/nodes/transport/transport_van_using_diesel_mix.converter.ad b/graphs/energy/nodes/transport/transport_van_using_diesel_mix.converter.ad index af3e424486..06d5c4f06e 100644 --- a/graphs/energy/nodes/transport/transport_van_using_diesel_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_diesel_mix.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.02160428276344953 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_vans, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_vans diff --git a/graphs/energy/nodes/transport/transport_van_using_electricity.converter.ad b/graphs/energy/nodes/transport/transport_van_using_electricity.converter.ad index 9cf86a631b..205425e663 100644 --- a/graphs/energy/nodes/transport/transport_van_using_electricity.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_electricity.converter.ad @@ -1,9 +1,9 @@ - output.freight_tonne_kms = 0.046885890252592606 - output.loss = elastic - groups = [ - emissions, emissions_transport, emissions_transport_vans, - inheritable_nou, application_group, freight_transport, mv_net_demand, wacc_proven_tech - ] + direct_emissions, inheritable_nou, application_group, freight_transport, mv_net_demand, + wacc_proven_tech + ] - use = energetic - availability = 1.0 - full_load_hours = 0.0 @@ -28,3 +28,4 @@ - electricity_output_capacity = 0.011 - free_co2_factor = 0.0 - takes_part_in_ets = 0.0 +- sector_label = transport_vans diff --git a/graphs/energy/nodes/transport/transport_van_using_gasoline_mix.converter.ad b/graphs/energy/nodes/transport/transport_van_using_gasoline_mix.converter.ad index ed4c263ba8..429b77211e 100644 --- a/graphs/energy/nodes/transport/transport_van_using_gasoline_mix.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_gasoline_mix.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.01890374741801834 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_vans, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_vans diff --git a/graphs/energy/nodes/transport/transport_van_using_hydrogen.converter.ad b/graphs/energy/nodes/transport/transport_van_using_hydrogen.converter.ad index 5dd37a6eef..4ec12d2adf 100644 --- a/graphs/energy/nodes/transport/transport_van_using_hydrogen.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_hydrogen.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.031037138617913417 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_vans, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_vans diff --git a/graphs/energy/nodes/transport/transport_van_using_lpg.converter.ad b/graphs/energy/nodes/transport/transport_van_using_lpg.converter.ad index ed4c263ba8..429b77211e 100644 --- a/graphs/energy/nodes/transport/transport_van_using_lpg.converter.ad +++ b/graphs/energy/nodes/transport/transport_van_using_lpg.converter.ad @@ -1,9 +1,7 @@ - output.freight_tonne_kms = 0.01890374741801834 - output.loss = elastic -- groups = [ - emissions, emissions_transport, emissions_transport_vans, - application_group, freight_transport - ] +- groups = [direct_emissions, application_group, freight_transport] - use = energetic - technical_lifetime = 12.0 - free_co2_factor = 0.0 +- sector_label = transport_vans diff --git a/graphs/molecules/nodes/agriculture/agriculture_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/agriculture/agriculture_non_specified_energetic_other_ghg.ad index 1685012f48..59209aefbc 100644 --- a/graphs/molecules/nodes/agriculture/agriculture_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/agriculture/agriculture_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_agriculture, emissions_agriculture_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = agriculture_non_specified ~ demand = EMISSIONS(agriculture_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_co2.ad b/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_co2.ad index 6b885bdbd7..827d3c0d23 100644 --- a/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_co2.ad +++ b/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_agriculture, emissions_agriculture_non_specified] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = agriculture_non_specified ~ demand = EMISSIONS(agriculture_non_specified, non_energetic, co2) diff --git a/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_other_ghg.ad b/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_other_ghg.ad index 2dd0e37042..e3895f30ee 100644 --- a/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/agriculture/agriculture_non_specified_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_agriculture, emissions_agriculture_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = agriculture_non_specified ~ demand = EMISSIONS(agriculture_non_specified, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/buildings/buildings_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/buildings/buildings_non_specified_energetic_other_ghg.ad index f0d5813cdf..d243c7ee98 100644 --- a/graphs/molecules/nodes/buildings/buildings_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/buildings/buildings_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_buildings, emissions_buildings_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = buildings_non_specified ~ demand = EMISSIONS(buildings_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/bunkers/bunkers_international_aviation_energetic_other_ghg.ad b/graphs/molecules/nodes/bunkers/bunkers_international_aviation_energetic_other_ghg.ad index 91c3fbda5e..67b1c4a385 100644 --- a/graphs/molecules/nodes/bunkers/bunkers_international_aviation_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/bunkers/bunkers_international_aviation_energetic_other_ghg.ad @@ -1,4 +1,6 @@ -- groups = [preset_demand, emissions, emissions_bunkers, emissions_bunkers_international_aviation] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 +- use = energetic +- sector_label = bunkers_international_aviation ~ demand = 0.0 diff --git a/graphs/molecules/nodes/bunkers/bunkers_international_navigation_energetic_other_ghg.ad b/graphs/molecules/nodes/bunkers/bunkers_international_navigation_energetic_other_ghg.ad index 0c983057be..88732739ae 100644 --- a/graphs/molecules/nodes/bunkers/bunkers_international_navigation_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/bunkers/bunkers_international_navigation_energetic_other_ghg.ad @@ -1,4 +1,6 @@ -- groups = [preset_demand, emissions, emissions_bunkers, emissions_bunkers_international_navigation] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 +- use = energetic +- sector_label = bunkers_international_navigation ~ demand = 0.0 diff --git a/graphs/molecules/nodes/energy/energy_ccus_non_energetic_co2.ad b/graphs/molecules/nodes/energy/energy_ccus_non_energetic_co2.ad index 37aa24d790..a3366b48f5 100644 --- a/graphs/molecules/nodes/energy/energy_ccus_non_energetic_co2.ad +++ b/graphs/molecules/nodes/energy/energy_ccus_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_ccus] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = energy_ccus ~ demand = EMISSIONS(energy_ccus, non_energetic, co2) diff --git a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_dispatchable_co2.ad b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_dispatchable_co2.ad index ac706b4336..371962876f 100644 --- a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_dispatchable_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_dispatchable_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_must_run_co2.ad b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_must_run_co2.ad index 269467321f..617ea78884 100644 --- a/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_must_run_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_ht_wood_pellets_ccs_must_run_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_dispatchable_co2.ad b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_dispatchable_co2.ad index ac706b4336..371962876f 100644 --- a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_dispatchable_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_dispatchable_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_must_run_co2.ad b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_must_run_co2.ad index 269467321f..617ea78884 100644 --- a/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_must_run_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_mt_wood_pellets_ccs_must_run_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_captured_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_co2.ad index e86b71e620..95284254b6 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_co2.ad @@ -3,3 +3,4 @@ - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_ht_waste_mix_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_captured_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_co2.ad index 801e9b39c4..6445303540 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_co2.ad @@ -3,3 +3,4 @@ - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_chp_supercritical_ccs_mt_waste_mix_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_electricity_and_heat_production_energetic_other_ghg.ad b/graphs/molecules/nodes/energy/energy_electricity_and_heat_production_energetic_other_ghg.ad index 8043a77a76..c3b1be24ce 100644 --- a/graphs/molecules/nodes/energy/energy_electricity_and_heat_production_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/energy/energy_electricity_and_heat_production_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_electricity_and_heat_production] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = energy_electricity_and_heat_production ~ demand = EMISSIONS(energy_electricity_and_heat_production, energetic, other_ghg) diff --git a/graphs/molecules/nodes/energy/energy_fuels_production_energetic_other_ghg.ad b/graphs/molecules/nodes/energy/energy_fuels_production_energetic_other_ghg.ad index 7cc83e1ad2..878d780fda 100644 --- a/graphs/molecules/nodes/energy/energy_fuels_production_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/energy/energy_fuels_production_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_fuels_production] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = energy_fuels_production ~ demand = EMISSIONS(energy_fuels_production, energetic, other_ghg) diff --git a/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_co2.ad b/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_co2.ad index 79d02aec1f..b998aef58a 100644 --- a/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_co2.ad +++ b/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_fugitive_emissions] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = energy_fugitive_emissions ~ demand = EMISSIONS(energy_fugitive_emissions, non_energetic, co2) diff --git a/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_other_ghg.ad b/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_other_ghg.ad index 67f82f8f2f..d599c65019 100644 --- a/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/energy/energy_fugitive_emissions_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_fugitive_emissions] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = energy_fugitive_emissions ~ demand = EMISSIONS(energy_fugitive_emissions, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_emitted_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run_co2.ad index 2df7554553..5bfea3b5b9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_autothermal_reformer_ccs_must_run_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.natural_gas = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_co2.ad index 9382e9a847..6d50956cb0 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.torrefied_biomass_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_emitted_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_biomass_gasification_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_captured_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_production_non_energetic_other_ghg.ad b/graphs/molecules/nodes/energy/energy_hydrogen_production_non_energetic_other_ghg.ad index 592aaecceb..b2ae779097 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_production_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_production_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_hydrogen_production] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = energy_hydrogen_production ~ demand = EMISSIONS(energy_hydrogen_production, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_emitted_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run_co2.ad b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run_co2.ad index f63ca32ef1..1146bdb82c 100644 --- a/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run_co2.ad +++ b/graphs/molecules/nodes/energy/energy_hydrogen_steam_methane_reformer_ccs_must_run_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.natural_gas = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_methanol_production_non_energetic_other_ghg.ad b/graphs/molecules/nodes/energy/energy_methanol_production_non_energetic_other_ghg.ad index 14dd5f43a2..e9f43a202e 100644 --- a/graphs/molecules/nodes/energy/energy_methanol_production_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/energy/energy_methanol_production_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_energy, emissions_energy_methanol_production] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = energy_methanol_production ~ demand = EMISSIONS(energy_methanol_production, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/energy/energy_power_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_co2.ad index 047e7e2ff9..8e3152c534 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_co2.ad @@ -3,3 +3,4 @@ - from_energy.conversion.coal = carrier: co2_conversion_per_mj - from_energy.conversion.torrefied_biomass_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_coal_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_co2.ad index 4b9f4414bb..a3cc8f7955 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_co2.ad @@ -1,3 +1,4 @@ - from_energy.source = energy_power_combined_cycle_ccs_network_gas_dispatchable - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_combined_cycle_ccs_network_gas_dispatchable_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_co2.ad b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_co2.ad index bc10d38f43..4c8bf94611 100644 --- a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_supercritical_ccs_waste_mix_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_co2.ad index 7afd5ee926..a287fba249 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_co2.ad @@ -3,3 +3,4 @@ - from_energy.conversion.coal = carrier: co2_conversion_per_mj - from_energy.conversion.torrefied_biomass_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_ccs_coal_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_co2.ad index d5222bd41c..6154f4b8b0 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_co2.ad @@ -3,3 +3,4 @@ - from_energy.conversion.lignite = carrier: co2_conversion_per_mj - from_energy.conversion.torrefied_biomass_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_dispatchable_co2.ad b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_dispatchable_co2.ad index d819530a08..3c73bfe305 100644 --- a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_dispatchable_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_dispatchable_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_must_run_co2.ad b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_must_run_co2.ad index 2ef5a49b74..1fdfa0cf3c 100644 --- a/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_must_run_co2.ad +++ b/graphs/molecules/nodes/energy/energy_power_wood_pellets_ccs_must_run_co2.ad @@ -2,3 +2,4 @@ - from_energy.attribute = primary_co2_emission_of_bio_and_fossil_without_capture - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_co2.ad index ef949d31d2..2d3c9ef218 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.biogenic_waste = 0.070309 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_biogenic_waste_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_co2.ad index 21873c6593..e9c51495e7 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.dry_biomass = 0.070309 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_dry_biomass_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_captured_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_co2.ad index 8573c2e9d1..0de5a1a575 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.non_biogenic_waste = 0.076192 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_emitted_co2.ad index 6b6da0dfce..70d7c3127a 100644 --- a/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_fischer_tropsch_non_biogenic_waste_ccs_emitted_co2.ad @@ -4,3 +4,4 @@ # nodes of the output carriers of this process node. - groups = [ccus_emitted] +- use = energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_co2.ad index cd7a697efe..81d3a6fb34 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.biogenic_waste = 0.058032 - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_emitted_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_biogenic_waste_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_co2.ad index 957bd6b5a9..243db7d736 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.dry_biomass = 0.058032 - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_emitted_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_dry_biomass_ccs_emitted_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_captured_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_captured_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_captured_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_captured_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_co2.ad index 6db6089c79..9637492b96 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_co2.ad @@ -6,3 +6,4 @@ - from_energy.direction = input - from_energy.conversion.non_biogenic_waste = 0.063049 - input.co2 = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_emitted_co2.ad b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_emitted_co2.ad index 78dadaf5e5..eedc93f947 100644 --- a/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_emitted_co2.ad +++ b/graphs/molecules/nodes/energy/energy_production_methanol_synthesis_non_biogenic_waste_ccs_emitted_co2.ad @@ -4,3 +4,4 @@ # nodes of methanol. - groups = [ccus_emitted] +- use = non_energetic diff --git a/graphs/molecules/nodes/households/households_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/households/households_non_specified_energetic_other_ghg.ad index 65ecd4c7a4..ce3f68628c 100644 --- a/graphs/molecules/nodes/households/households_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/households/households_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_households, emissions_households_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = households_non_specified ~ demand = EMISSIONS(households_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/energy_methanol_production_coal_gas_co.ad b/graphs/molecules/nodes/industry/energy_methanol_production_coal_gas_co.ad index 9ff44ffd44..cc576dcf0f 100644 --- a/graphs/molecules/nodes/industry/energy_methanol_production_coal_gas_co.ad +++ b/graphs/molecules/nodes/industry/energy_methanol_production_coal_gas_co.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal_gas = edges: primary_co2_emission_of_bio_and_fossil_without_capture_factor - input.co = 1.0 +- use = non_energetic diff --git a/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_co2.ad index b50dfafbfc..fb16801fb0 100644 --- a/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_aluminium] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_aluminium ~ demand = EMISSIONS(industry_aluminium, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_other_ghg.ad index 0441e95e96..169e64a4e0 100644 --- a/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_aluminium_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_aluminium] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_aluminium ~ demand = EMISSIONS(industry_aluminium, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_chemical_other_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_chemical_other_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemical_other_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemical_other_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemical_other_captured_co2.ad b/graphs/molecules/nodes/industry/industry_chemical_other_captured_co2.ad index 07b544133f..18dd296d6d 100644 --- a/graphs/molecules/nodes/industry/industry_chemical_other_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemical_other_captured_co2.ad @@ -1,7 +1,7 @@ - groups = [ - emissions, emissions_industry, emissions_industry_chemicals, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_energetic_emissions_industry + ] - presentation_group = co2_capture - typical_input_capacity = 106250.0 - full_load_hours = 8000.0 @@ -16,3 +16,5 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic +- sector_label = industry_chemicals diff --git a/graphs/molecules/nodes/industry/industry_chemical_other_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_chemical_other_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemical_other_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemical_other_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemical_other_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_chemical_other_emitted_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemical_other_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemical_other_emitted_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_processes_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_processes_co2.ad index 8b13789179..24339bd060 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_processes_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_capture_potential_processes_co2.ad @@ -1 +1,2 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_co2.ad index 8b13789179..ae047538da 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_co2.ad @@ -1 +1 @@ - +- use = undefined diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_combustion_co2.ad index 50a8e1c26f..8b37a4320a 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_combustion_co2.ad @@ -1,7 +1,8 @@ - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_energetic_emissions_industry + ] +- use = energetic - presentation_group = co2_capture - typical_input_capacity = 106250.0 - full_load_hours = 8000.0 @@ -16,3 +17,4 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- sector_label = industry_fertilizers diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_processes_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_processes_co2.ad index 4cc769f4e7..0d375aabe1 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_processes_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_captured_processes_co2.ad @@ -1,7 +1,8 @@ - groups = [ - emissions, emissions_industry, emissions_industry_fertilizers, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_non_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_non_energetic_emissions_industry + ] +- use = non_energetic - presentation_group = co2_capture - typical_input_capacity = 225000.0 - full_load_hours = 8000.0 @@ -16,3 +17,4 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- sector_label = industry_fertilizers diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_emitted_co2.ad index af792a3c55..78024d7df9 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_emitted_co2.ad @@ -1,3 +1,4 @@ - graph_methods = [demand] +- use = undefined ~ demand = DEMAND(fertilizers_ccus_demands, industry_chemicals_fertilizers_emitted_co2) diff --git a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_processes_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_processes_co2.ad index 8b13789179..df889e29e9 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_processes_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_fertilizers_processes_co2.ad @@ -1 +1 @@ - +- use = non_energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_co2.ad index 49f6e90cbb..82c1299875 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_chemicals] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_chemicals ~ demand = EMISSIONS(industry_chemicals, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_other_ghg.ad index 4deecdf7af..5bd2479767 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_chemicals] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_chemicals ~ demand = EMISSIONS(industry_chemicals, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_chemicals_refineries_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_refineries_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_refineries_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_refineries_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_refineries_captured_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_refineries_captured_co2.ad index 94584d0d76..f577ac8fd0 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_refineries_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_refineries_captured_co2.ad @@ -1,7 +1,7 @@ - groups = [ - emissions, emissions_industry, emissions_industry_refineries, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_energetic_emissions_industry + ] - presentation_group = co2_capture - typical_input_capacity = 106250.0 - full_load_hours = 8000.0 @@ -16,3 +16,5 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic +- sector_label = industry_refineries diff --git a/graphs/molecules/nodes/industry/industry_chemicals_refineries_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_refineries_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_refineries_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_refineries_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_chemicals_refineries_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_chemicals_refineries_emitted_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_chemicals_refineries_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_chemicals_refineries_emitted_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_external_coupling_node_captured_co2.ad b/graphs/molecules/nodes/industry/industry_external_coupling_node_captured_co2.ad index 3bc9a75944..61bdeadb76 100644 --- a/graphs/molecules/nodes/industry/industry_external_coupling_node_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_external_coupling_node_captured_co2.ad @@ -3,9 +3,8 @@ # Because these emissions are out of scope of the ETM, the captured flow is not subtracted from # the total emissions. -- groups = [ - emissions, emissions_industry, emissions_industry_non_specified, ccus_captured, - preset_demand - ] +- groups = [direct_emissions, ccus_captured, preset_demand] +- use = non_energetic +- sector_label = industry_non_specified ~ demand = 0.0 diff --git a/graphs/molecules/nodes/industry/industry_fertilizers_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_fertilizers_non_energetic_other_ghg.ad index c544cc2c87..69a3a1d41b 100644 --- a/graphs/molecules/nodes/industry/industry_fertilizers_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_fertilizers_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_fertilizers] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_fertilizers ~ demand = EMISSIONS(industry_fertilizers, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_coal_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_coal_co2.ad index ca5b82018e..ec6fa463e7 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_coal_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_coal_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_crude_oil_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_crude_oil_co2.ad index e542e47fd3..c33b34ddc3 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_crude_oil_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_crude_oil_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_co2.ad index 746ffc9081..8138ed8a31 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2.ad index 59815cc0a5..48e0ad6961 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2.ad @@ -4,5 +4,6 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = non_energetic ~ demand = DEMAND(fertilizers_ccus_demands, industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2) diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_wood_pellets_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_wood_pellets_co2.ad index 9c71368bd0..b04ebe9bc0 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_wood_pellets_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_fertilizers_wood_pellets_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.wood_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_coal_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_coal_co2.ad index d0fe07a12b..557281ccd4 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_coal_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_coal_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_crude_oil_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_crude_oil_co2.ad index 3e7b590b11..6755bbbbb7 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_crude_oil_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_crude_oil_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_network_gas_co2.ad index a7e6cfde8d..0fbe85f170 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_network_gas_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_wood_pellets_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_wood_pellets_co2.ad index 54c1ea8fd2..61bb7083d3 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_wood_pellets_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_other_wood_pellets_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.wood_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_coal_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_coal_co2.ad index 230f901f9c..edc16d9963 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_coal_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_coal_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_crude_oil_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_crude_oil_co2.ad index fb8610e061..88c0ce7cb5 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_crude_oil_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_crude_oil_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_network_gas_co2.ad index daab6250e3..39a841e3e9 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_network_gas_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_wood_pellets_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_wood_pellets_co2.ad index 77d42c9317..2af134e46a 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_wood_pellets_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_chemical_refineries_wood_pellets_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.wood_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_coal_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_coal_co2.ad index c138507297..846ddf7acb 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_coal_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_coal_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_crude_oil_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_crude_oil_co2.ad index 152ca962d4..4841adb890 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_crude_oil_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_crude_oil_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_network_gas_co2.ad index a9c64a2269..8ecb0bc847 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_network_gas_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_wood_pellets_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_wood_pellets_co2.ad index 15440659ec..53cc0cb996 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_wood_pellets_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_food_wood_pellets_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.wood_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_coal_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_coal_co2.ad index 7374ddc6a7..db8d715aec 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_coal_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_coal_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.coal = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_crude_oil_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_crude_oil_co2.ad index 637c79e685..322a6de6a4 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_crude_oil_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_crude_oil_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_network_gas_co2.ad index 25fc3a8c1c..dab5007f37 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_network_gas_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.network_gas = 0.0564 - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_wood_pellets_co2.ad b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_wood_pellets_co2.ad index 00a67d9239..aa184387c0 100644 --- a/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_wood_pellets_co2.ad +++ b/graphs/molecules/nodes/industry/industry_final_demand_for_other_paper_wood_pellets_co2.ad @@ -2,3 +2,4 @@ - from_energy.direction = input - from_energy.conversion.wood_pellets = carrier: potential_co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_food_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_food_non_energetic_co2.ad index 68a8d4ff67..8b2596cb68 100644 --- a/graphs/molecules/nodes/industry/industry_food_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_food_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_food] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_food ~ demand = EMISSIONS(industry_food, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_food_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_food_non_energetic_other_ghg.ad index 73ed353a60..5bb03e5a26 100644 --- a/graphs/molecules/nodes/industry/industry_food_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_food_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_food] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_food ~ demand = EMISSIONS(industry_food, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_non_specified_energetic_other_ghg.ad index 410086bbe3..c1d6f5f4cd 100644 --- a/graphs/molecules/nodes/industry/industry_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = industry_non_specified ~ demand = EMISSIONS(industry_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_other_food_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_other_food_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_food_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_food_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_other_food_captured_co2.ad b/graphs/molecules/nodes/industry/industry_other_food_captured_co2.ad index 597dc0645e..5be84660c3 100644 --- a/graphs/molecules/nodes/industry/industry_other_food_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_food_captured_co2.ad @@ -1,7 +1,7 @@ - groups = [ - emissions, emissions_industry, emissions_industry_food, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_energetic_emissions_industry + ] - presentation_group = p2kerosene - typical_input_capacity = 45000.0 - full_load_hours = 8000.0 @@ -16,3 +16,5 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic +- sector_label = industry_food diff --git a/graphs/molecules/nodes/industry/industry_other_food_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_other_food_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_food_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_food_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_other_food_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_other_food_emitted_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_food_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_food_emitted_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_co2.ad index adaa38b54e..3e5e033973 100644 --- a/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_other_metals] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_other_metals ~ demand = EMISSIONS(industry_other_metals, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_other_ghg.ad index 0d5a2103de..158b670de8 100644 --- a/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_other_metals_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_other_metals] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_other_metals ~ demand = EMISSIONS(industry_other_metals, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_other_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_other_non_energetic_co2.ad index ff09d4f8f6..23fb0a45e7 100644 --- a/graphs/molecules/nodes/industry/industry_other_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_other] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_other ~ demand = EMISSIONS(industry_other, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_other_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_other_non_energetic_other_ghg.ad index 43d2260da7..bf100ceea2 100644 --- a/graphs/molecules/nodes/industry/industry_other_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_other_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_other] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_other ~ demand = EMISSIONS(industry_other, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_other_paper_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_other_paper_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_paper_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_paper_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_other_paper_captured_co2.ad b/graphs/molecules/nodes/industry/industry_other_paper_captured_co2.ad index 0c6747955f..2612e916df 100644 --- a/graphs/molecules/nodes/industry/industry_other_paper_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_paper_captured_co2.ad @@ -1,7 +1,7 @@ - groups = [ - emissions, emissions_industry, emissions_industry_paper, ccus_captured, - costs_co2_ccus, wacc_unproven_tech, captured_energetic_emissions_industry - ] + direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech, + captured_energetic_emissions_industry + ] - presentation_group = co2_capture - typical_input_capacity = 45000.0 - full_load_hours = 8000.0 @@ -16,3 +16,5 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic +- sector_label = industry_paper diff --git a/graphs/molecules/nodes/industry/industry_other_paper_combustion_co2.ad b/graphs/molecules/nodes/industry/industry_other_paper_combustion_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_paper_combustion_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_paper_combustion_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_other_paper_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_other_paper_emitted_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_other_paper_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_other_paper_emitted_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_paper_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_paper_non_energetic_co2.ad index 10cc0555bd..e60057a205 100644 --- a/graphs/molecules/nodes/industry/industry_paper_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_paper_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_paper] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_paper ~ demand = EMISSIONS(industry_paper, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_paper_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_paper_non_energetic_other_ghg.ad index dcfd497308..7554bcb6ef 100644 --- a/graphs/molecules/nodes/industry/industry_paper_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_paper_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_paper] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_paper ~ demand = EMISSIONS(industry_paper, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_refineries_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_refineries_energetic_other_ghg.ad index 615a7f58ad..cdd372ff67 100644 --- a/graphs/molecules/nodes/industry/industry_refineries_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_refineries_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_refineries] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = industry_refineries ~ demand = EMISSIONS(industry_refineries, energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_refineries_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_refineries_non_energetic_other_ghg.ad index be5edb544f..80845a36b6 100644 --- a/graphs/molecules/nodes/industry/industry_refineries_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_refineries_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_refineries] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_refineries ~ demand = EMISSIONS(industry_refineries, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_captured_co2.ad b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_captured_co2.ad index 1d376f5a79..4cee447b0d 100644 --- a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_captured_co2.ad @@ -13,3 +13,4 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_co2.ad b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_co2.ad index 2539578fbf..7b6ba5804c 100644 --- a/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_blastfurnace_bof_co2.ad @@ -6,3 +6,4 @@ - from_energy.conversion.network_gas = edges: primary_co2_emission_of_bio_and_fossil_without_capture_factor - from_energy.conversion.crude_oil = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_captured_co2.ad b/graphs/molecules/nodes/industry/industry_steel_captured_co2.ad index 6632174f4d..a1e28cbf82 100644 --- a/graphs/molecules/nodes/industry/industry_steel_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_captured_co2.ad @@ -1,4 +1,3 @@ -- groups = [ - emissions, emissions_industry, emissions_industry_steel, ccus_captured, - captured_energetic_emissions_industry - ] +- groups = [direct_emissions, ccus_captured, captured_energetic_emissions_industry] +- use = energetic +- sector_label = industry_steel diff --git a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_capture_potential_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_capture_potential_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_captured_co2.ad b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_captured_co2.ad index 02c97c0b99..fee45740de 100644 --- a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_captured_co2.ad @@ -12,3 +12,4 @@ - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.07 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_co2.ad b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_co2.ad index 43f3a09d1c..7160e4d3b3 100644 --- a/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_cyclonefurnace_bof_co2.ad @@ -4,3 +4,4 @@ - from_energy.conversion.network_gas = edges: primary_co2_emission_of_bio_and_fossil_without_capture_factor - from_energy.conversion.wood_pellets = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_capture_potential_co2.ad index e69de29bb2..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_capture_potential_co2.ad @@ -0,0 +1 @@ +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_captured_co2.ad b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_captured_co2.ad index 02efe5cd54..7eeaf2d2ba 100644 --- a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_captured_co2.ad @@ -12,3 +12,4 @@ - variable_operation_and_maintenance_costs_for_ccs_per_full_load_hour = 0.0 - variable_operation_and_maintenance_costs_per_full_load_hour = 0.0 - wacc = 0.07 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_co2.ad b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_co2.ad index e9444e80ab..d4c4caa003 100644 --- a/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_dri_network_gas_co2.ad @@ -3,3 +3,4 @@ - from_energy.conversion.coal = carrier: co2_conversion_per_mj - from_energy.conversion.network_gas = edges: primary_co2_emission_of_bio_and_fossil_without_capture_factor - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_emitted_co2.ad b/graphs/molecules/nodes/industry/industry_steel_emitted_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_steel_emitted_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_emitted_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_capture_potential_co2.ad b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_capture_potential_co2.ad index 8b13789179..79669aab7e 100644 --- a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_capture_potential_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_capture_potential_co2.ad @@ -1 +1 @@ - +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_captured_co2.ad b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_captured_co2.ad index 4d06ebfc40..74767adec8 100644 --- a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_captured_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_captured_co2.ad @@ -17,3 +17,4 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_co2.ad b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_co2.ad index 26cc5baf1a..45c1c82929 100644 --- a/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_external_coupling_node_co2.ad @@ -11,3 +11,4 @@ - from_energy.conversion.network_gas = edges: primary_co2_emission_of_bio_and_fossil_without_capture_factor - from_energy.conversion.wood_pellets = carrier: co2_conversion_per_mj - input.co2 = 1.0 +- use = energetic diff --git a/graphs/molecules/nodes/industry/industry_steel_non_energetic_co2.ad b/graphs/molecules/nodes/industry/industry_steel_non_energetic_co2.ad index a4c2d9b4c3..72948e5ddc 100644 --- a/graphs/molecules/nodes/industry/industry_steel_non_energetic_co2.ad +++ b/graphs/molecules/nodes/industry/industry_steel_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_steel] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_steel ~ demand = EMISSIONS(industry_steel, non_energetic, co2) diff --git a/graphs/molecules/nodes/industry/industry_steel_non_energetic_other_ghg.ad b/graphs/molecules/nodes/industry/industry_steel_non_energetic_other_ghg.ad index 6af7e0468f..17c231ca6a 100644 --- a/graphs/molecules/nodes/industry/industry_steel_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/industry/industry_steel_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_industry, emissions_industry_steel] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = industry_steel ~ demand = EMISSIONS(industry_steel, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_co2.ad b/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_co2.ad index b79778f12d..734c5ab6fa 100644 --- a/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_co2.ad +++ b/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_lulucf, emissions_lulucf_emissions] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = lulucf_emissions ~ demand = EMISSIONS(lulucf_emissions, non_energetic, co2) diff --git a/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_other_ghg.ad b/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_other_ghg.ad index 567160a902..ea30bf4c42 100644 --- a/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/lulucf/lulucf_emissions_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_lulucf, emissions_lulucf_emissions] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = lulucf_emissions ~ demand = EMISSIONS(lulucf_emissions, non_energetic, other_ghg) diff --git a/graphs/molecules/nodes/lulucf/lulucf_removals_non_energetic_co2.ad b/graphs/molecules/nodes/lulucf/lulucf_removals_non_energetic_co2.ad index 6ccbc24dd0..e288d4b05c 100644 --- a/graphs/molecules/nodes/lulucf/lulucf_removals_non_energetic_co2.ad +++ b/graphs/molecules/nodes/lulucf/lulucf_removals_non_energetic_co2.ad @@ -2,8 +2,10 @@ # ccus_captured group added to ensure emissions are reported under CO2 capture to account for CO2 removals -- groups = [preset_demand, emissions, emissions_lulucf, emissions_lulucf_removals, ccus_captured] +- groups = [preset_demand, direct_emissions, ccus_captured] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = lulucf_removals ~ demand = EMISSIONS(lulucf_removals, non_energetic, co2) diff --git a/graphs/molecules/nodes/molecules/molecules_direct_air_capture_co2.ad b/graphs/molecules/nodes/molecules/molecules_direct_air_capture_co2.ad index c6b697d4a8..bcd4a7b8f1 100644 --- a/graphs/molecules/nodes/molecules/molecules_direct_air_capture_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_direct_air_capture_co2.ad @@ -1,7 +1,5 @@ -- groups = [ - emissions, emissions_energy, emissions_energy_ccus, ccus_captured, - costs_co2_ccus, wacc_unproven_tech - ] +- groups = [direct_emissions, ccus_captured, costs_co2_ccus, wacc_unproven_tech] +- use = non_energetic - presentation_group = co2_capture - typical_input_capacity = 120163.4 - output.co2 = 1.0 @@ -17,3 +15,4 @@ - ccs_investment = 0.0 - cost_of_installing = 0.0 - decommissioning_costs = 0.0 +- sector_label = energy_ccus diff --git a/graphs/molecules/nodes/molecules/molecules_distribution_after_transport_co2.ad b/graphs/molecules/nodes/molecules/molecules_distribution_after_transport_co2.ad index e69de29bb2..ae047538da 100644 --- a/graphs/molecules/nodes/molecules/molecules_distribution_after_transport_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_distribution_after_transport_co2.ad @@ -0,0 +1 @@ +- use = undefined diff --git a/graphs/molecules/nodes/molecules/molecules_distribution_before_transport_co2.ad b/graphs/molecules/nodes/molecules/molecules_distribution_before_transport_co2.ad index e69de29bb2..ae047538da 100644 --- a/graphs/molecules/nodes/molecules/molecules_distribution_before_transport_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_distribution_before_transport_co2.ad @@ -0,0 +1 @@ +- use = undefined diff --git a/graphs/molecules/nodes/molecules/molecules_export_co2.ad b/graphs/molecules/nodes/molecules/molecules_export_co2.ad index e69de29bb2..ae047538da 100644 --- a/graphs/molecules/nodes/molecules/molecules_export_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_export_co2.ad @@ -0,0 +1 @@ +- use = undefined diff --git a/graphs/molecules/nodes/molecules/molecules_import_co2_backup.ad b/graphs/molecules/nodes/molecules/molecules_import_co2_backup.ad index e69de29bb2..ae047538da 100644 --- a/graphs/molecules/nodes/molecules/molecules_import_co2_backup.ad +++ b/graphs/molecules/nodes/molecules/molecules_import_co2_backup.ad @@ -0,0 +1 @@ +- use = undefined diff --git a/graphs/molecules/nodes/molecules/molecules_import_co2_baseload.ad b/graphs/molecules/nodes/molecules/molecules_import_co2_baseload.ad index 5b078ac2b0..90bb090631 100644 --- a/graphs/molecules/nodes/molecules/molecules_import_co2_baseload.ad +++ b/graphs/molecules/nodes/molecules/molecules_import_co2_baseload.ad @@ -1,3 +1,4 @@ - groups = [preset_demand] +- use = undefined ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_offshore_sequestration_co2.ad b/graphs/molecules/nodes/molecules/molecules_offshore_sequestration_co2.ad index 0e96698ebf..c1c7646a63 100644 --- a/graphs/molecules/nodes/molecules/molecules_offshore_sequestration_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_offshore_sequestration_co2.ad @@ -1,4 +1,5 @@ - groups = [preset_demand, costs_co2_ccus, wacc_unproven_tech] +- use = undefined - presentation_group = co2_storage - typical_input_capacity = 4087500.0 - full_load_hours = 4000.0 diff --git a/graphs/molecules/nodes/molecules/molecules_other_utilisation_co2.ad b/graphs/molecules/nodes/molecules/molecules_other_utilisation_co2.ad index 8d306af05a..39f29406e7 100644 --- a/graphs/molecules/nodes/molecules/molecules_other_utilisation_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_other_utilisation_co2.ad @@ -1,3 +1,2 @@ - groups = [preset_demand] - - +- use = non_energetic diff --git a/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_emitted_co2.ad b/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_emitted_co2.ad index e1ac9a566f..6216c243dc 100644 --- a/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_emitted_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_emitted_co2.ad @@ -1,4 +1,6 @@ -- groups = [emissions, emissions_energy, emissions_energy_ccus] +- groups = [direct_emissions] - graph_methods = [demand] +- use = non_energetic +- sector_label = energy_ccus ~ demand = DEMAND(fertilizers_ccus_demands, molecules_other_utilisation_co2) diff --git a/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_indefinitely_co2.ad b/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_indefinitely_co2.ad index e69de29bb2..df889e29e9 100644 --- a/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_indefinitely_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_other_utilisation_delayed_indefinitely_co2.ad @@ -0,0 +1 @@ +- use = non_energetic diff --git a/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_dispatchable_co2.ad b/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_dispatchable_co2.ad index dd8d1efc1e..a86b25917d 100644 --- a/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_dispatchable_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_dispatchable_co2.ad @@ -3,5 +3,6 @@ - from_energy.direction = output - from_energy.conversion.kerosene = 0.09038 - from_energy.conversion.gasoline = 0.09038 +- use = energetic ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_must_run_co2.ad b/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_must_run_co2.ad index 3933460645..6e9de31323 100644 --- a/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_must_run_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_production_fischer_tropsch_synthetic_must_run_co2.ad @@ -3,5 +3,6 @@ - from_energy.direction = output - from_energy.conversion.kerosene = 0.09038 - from_energy.conversion.gasoline = 0.09038 +- use = energetic ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_co2.ad b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_co2.ad index 2fc74ae7db..c5505a6017 100644 --- a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_co2.ad @@ -2,5 +2,6 @@ - from_energy.source = energy_production_methanol_synthesis_synthetic - from_energy.direction = output - from_energy.conversion.methanol = 0.074 +- use = non_energetic ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_emitted_co2.ad b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_emitted_co2.ad index f144c195c2..8d9465116b 100644 --- a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_emitted_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_emitted_co2.ad @@ -2,5 +2,6 @@ - from_energy.source = energy_production_methanol_synthesis_synthetic - from_energy.direction = output - from_energy.conversion.methanol = 0.0049 +- use = non_energetic ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_utilised_co2.ad b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_utilised_co2.ad index dc8fc13cc7..1a82d4a382 100644 --- a/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_utilised_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_production_methanol_synthesis_synthetic_utilised_co2.ad @@ -2,5 +2,6 @@ - from_energy.source = energy_production_methanol_synthesis_synthetic - from_energy.direction = output - from_energy.conversion.methanol = carrier: co2_conversion_per_mj +- use = undefined ~ demand = 0.0 diff --git a/graphs/molecules/nodes/molecules/molecules_transport_pipelines_co2.ad b/graphs/molecules/nodes/molecules/molecules_transport_pipelines_co2.ad index a5aadacb4f..56d7230a06 100644 --- a/graphs/molecules/nodes/molecules/molecules_transport_pipelines_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_transport_pipelines_co2.ad @@ -1,4 +1,5 @@ - groups = [costs_co2_ccus, wacc_unproven_tech] +- use = undefined - presentation_group = co2_transport - typical_input_capacity = 1866438.4 - full_load_hours = 8000.0 diff --git a/graphs/molecules/nodes/molecules/molecules_transport_ships_co2.ad b/graphs/molecules/nodes/molecules/molecules_transport_ships_co2.ad index 2137686cda..36ff79b61b 100644 --- a/graphs/molecules/nodes/molecules/molecules_transport_ships_co2.ad +++ b/graphs/molecules/nodes/molecules/molecules_transport_ships_co2.ad @@ -1,4 +1,5 @@ - groups = [costs_co2_ccus, wacc_unproven_tech] +- use = undefined - presentation_group = co2_transport - typical_input_capacity = 285388.1 - full_load_hours = 8760.0 diff --git a/graphs/molecules/nodes/other/other_indirect_emissions_non_energetic_co2.ad b/graphs/molecules/nodes/other/other_indirect_emissions_non_energetic_co2.ad index c180d29816..c6b4c9de49 100644 --- a/graphs/molecules/nodes/other/other_indirect_emissions_non_energetic_co2.ad +++ b/graphs/molecules/nodes/other/other_indirect_emissions_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_other, emissions_other_indirect_emissions] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = other_indirect_emissions ~ demand = EMISSIONS(other_indirect_emissions, non_energetic, co2) diff --git a/graphs/molecules/nodes/other/other_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/other/other_non_specified_energetic_other_ghg.ad index 9ccbd39e0a..7b1f906225 100644 --- a/graphs/molecules/nodes/other/other_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/other/other_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_other, emissions_other_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = other_non_specified ~ demand = EMISSIONS(other_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/other/other_other_transportation_energetic_other_ghg.ad b/graphs/molecules/nodes/other/other_other_transportation_energetic_other_ghg.ad index ec8299b9b7..ab061b28d1 100644 --- a/graphs/molecules/nodes/other/other_other_transportation_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/other/other_other_transportation_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_other, emissions_other_other_transportation] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = other_other_transportation ~ demand = EMISSIONS(other_other_transportation, energetic, other_ghg) diff --git a/graphs/molecules/nodes/transport/transport_non_specified_energetic_other_ghg.ad b/graphs/molecules/nodes/transport/transport_non_specified_energetic_other_ghg.ad index b79daab4de..a5507b6610 100644 --- a/graphs/molecules/nodes/transport/transport_non_specified_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/transport/transport_non_specified_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_transport, emissions_transport_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = energetic +- sector_label = transport_non_specified ~ demand = EMISSIONS(transport_non_specified, energetic, other_ghg) diff --git a/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_co2.ad b/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_co2.ad index 2726b3ce85..7b9c17f6bd 100644 --- a/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_co2.ad +++ b/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_co2.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_waste, emissions_waste_non_specified] +- groups = [preset_demand, direct_emissions] - input.co2 = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = waste_non_specified ~ demand = EMISSIONS(waste_non_specified, non_energetic, co2) diff --git a/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_other_ghg.ad b/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_other_ghg.ad index 102182fcf4..8b02ebe488 100644 --- a/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_other_ghg.ad +++ b/graphs/molecules/nodes/waste/waste_non_specified_non_energetic_other_ghg.ad @@ -1,7 +1,9 @@ # Attribute scaling_exempt set to true to avoid scaling of value read from emissions.csv -- groups = [preset_demand, emissions, emissions_waste, emissions_waste_non_specified] +- groups = [preset_demand, direct_emissions] - input.other_ghg = 1.0 - scaling_exempt = true +- use = non_energetic +- sector_label = waste_non_specified ~ demand = EMISSIONS(waste_non_specified, non_energetic, other_ghg) diff --git a/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_electricity.ad b/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_electricity.ad new file mode 100644 index 0000000000..8894fb2ecb --- /dev/null +++ b/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_electricity.ad @@ -0,0 +1,14 @@ +# Priority set to 2 to set prior to input for share in ht/mt and input for capacity + +- query = + EACH( + UPDATE(OUTPUT_SLOTS(V(energy_chp_combined_cycle_ht_hydrogen), electricity), conversion, DIVIDE(USER_INPUT(), 100.0)), + UPDATE(OUTPUT_SLOTS(V(energy_chp_combined_cycle_mt_hydrogen), electricity), conversion, DIVIDE(USER_INPUT(), 100.0)) + ) +- priority = 2 +- max_value_gql = present:(V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_conversion) * 100.0) + 10.0 +- min_value_gql = present:(V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_conversion) * 100.0) - 10.0 +- start_value_gql = present:V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_conversion) * 100.0 +- step_value = 1.0 +- unit = % +- update_period = future diff --git a/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_heat.ad b/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_heat.ad new file mode 100644 index 0000000000..9c6451a7a8 --- /dev/null +++ b/inputs/costs_efficiencies/efficiency_energy_chp_combined_cycle_hydrogen_heat.ad @@ -0,0 +1,14 @@ +# Priority set to 2 to set prior to input for share in ht/mt and input for capacity + +- query = + EACH( + UPDATE(OUTPUT_SLOTS(V(energy_chp_combined_cycle_ht_hydrogen), steam_hot_water), conversion, DIVIDE(USER_INPUT(), 100.0)), + UPDATE(OUTPUT_SLOTS(V(energy_chp_combined_cycle_mt_hydrogen), steam_hot_water), conversion, DIVIDE(USER_INPUT(), 100.0)) + ) +- priority = 2 +- max_value_gql = present:(V(energy_chp_combined_cycle_ht_hydrogen, steam_hot_water_output_conversion) * 100.0) + 10.0 +- min_value_gql = present:(V(energy_chp_combined_cycle_ht_hydrogen, steam_hot_water_output_conversion) * 100.0) - 10.0 +- start_value_gql = present:V(energy_chp_combined_cycle_ht_hydrogen, steam_hot_water_output_conversion) * 100.0 +- step_value = 1.0 +- unit = % +- update_period = future diff --git a/inputs/costs_efficiencies/investment_costs_combustion_hydrogen_plant.ad b/inputs/costs_efficiencies/investment_costs_combustion_hydrogen_plant.ad index 385223805d..cab282866a 100644 --- a/inputs/costs_efficiencies/investment_costs_combustion_hydrogen_plant.ad +++ b/inputs/costs_efficiencies/investment_costs_combustion_hydrogen_plant.ad @@ -1,10 +1,8 @@ - query = UPDATE( - V( - energy_power_turbine_hydrogen, - energy_power_combined_cycle_hydrogen, - industry_chp_turbine_hydrogen - ), initial_investment, USER_INPUT() + V(Q(electricity_producing_hydrogen_converters)), + initial_investment, + USER_INPUT() ) - priority = 0 - max_value = 300.0 diff --git a/inputs/costs_efficiencies/om_costs_combustion_hydrogen_plant.ad b/inputs/costs_efficiencies/om_costs_combustion_hydrogen_plant.ad index 7060f55b5d..2c6abb6a88 100644 --- a/inputs/costs_efficiencies/om_costs_combustion_hydrogen_plant.ad +++ b/inputs/costs_efficiencies/om_costs_combustion_hydrogen_plant.ad @@ -1,18 +1,14 @@ - query = EACH( UPDATE( - V( - energy_power_turbine_hydrogen, - energy_power_combined_cycle_hydrogen, - industry_chp_turbine_hydrogen - ), fixed_operation_and_maintenance_costs_per_year, USER_INPUT() + V(Q(electricity_producing_hydrogen_converters)), + fixed_operation_and_maintenance_costs_per_year, + USER_INPUT() ), UPDATE( - V( - energy_power_turbine_hydrogen, - energy_power_combined_cycle_hydrogen, - industry_chp_turbine_hydrogen - ), variable_operation_and_maintenance_costs_per_full_load_hour, USER_INPUT() + V(Q(electricity_producing_hydrogen_converters)), + variable_operation_and_maintenance_costs_per_full_load_hour, + USER_INPUT() ) ) - priority = 0 diff --git a/inputs/demand/buildings/buildings_behaviour/buildings_space_heating_behaviour.ad b/inputs/demand/buildings/buildings_behaviour/buildings_space_heating_behaviour.ad new file mode 100644 index 0000000000..2c176d32e4 --- /dev/null +++ b/inputs/demand/buildings/buildings_behaviour/buildings_space_heating_behaviour.ad @@ -0,0 +1,17 @@ +# Sets the reduction in heat demand due to behavioural changes. It updates heating demand for +# existing and new buildings. +# Priority is set to 0 to go after number of buildings and insulation sliders. + +- query = + relative_change = DIVIDE(100 + USER_INPUT(), 100); + EACH( + UPDATE_WITH_FACTOR(V(buildings_useful_demand_for_space_heating_buildings_present), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(buildings_useful_demand_for_space_heating_buildings_future), preset_demand, relative_change) + ) +- priority = 0 +- max_value = 50.0 +- min_value = -50.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/buildings/buildings_demand/buildings_useful_demand_appliances.ad b/inputs/demand/buildings/buildings_demand/buildings_useful_demand_appliances.ad index 228c1508ce..0df93e1dc1 100644 --- a/inputs/demand/buildings/buildings_demand/buildings_useful_demand_appliances.ad +++ b/inputs/demand/buildings/buildings_demand/buildings_useful_demand_appliances.ad @@ -1,6 +1,6 @@ # The appliances efficiency and useful demand input set the same node # Updating the node sequentially would lead to incorrect results -# When the efficiency is not set, the node is update here +# When the efficiency is not set, the node is updated here # When the efficiency is set, this input does nothing and the net effect of both inputs is # set in the efficiency input diff --git a/inputs/demand/buildings/buildings_insulation/buildings_insulation_existing_buildings.ad b/inputs/demand/buildings/buildings_insulation/buildings_insulation_existing_buildings.ad new file mode 100644 index 0000000000..5dbd4c7e93 --- /dev/null +++ b/inputs/demand/buildings/buildings_insulation/buildings_insulation_existing_buildings.ad @@ -0,0 +1,21 @@ +# Sets the reduction in heating demand of existing buildings due to improved insulation. It updates: +# - Useful demand for space heating +# - Typical useful heat demand area attribute +# - Investment costs for insulation +# +# Priority is set to 1 to go after number of buildings but before behaviour sliders. + +- query = + relative_change = DIVIDE(100.0 - USER_INPUT(), 100.0); + EACH( + UPDATE_WITH_FACTOR(V(buildings_useful_demand_for_space_heating_buildings_present), preset_demand, relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_buildings_present, relative_change), + UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_present)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_future.ad b/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_future.ad deleted file mode 100644 index b781a9f413..0000000000 --- a/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_future.ad +++ /dev/null @@ -1,26 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_future = USER_INPUT(); - number_of_units_future = INPUT_VALUE(buildings_number_of_buildings_future); - typical_surface_area_per_unit = AREA(area_per_building_residence_equivalent); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - - EACH( - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_buildings_future, USER_INPUT()), - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_future)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_buildings_future),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_buildings_future),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_buildings_future) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_present.ad b/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_present.ad deleted file mode 100644 index 0da2de80bf..0000000000 --- a/inputs/demand/buildings/buildings_insulation/buildings_insulation_level_buildings_present.ad +++ /dev/null @@ -1,30 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_buildings_present) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings) }); - number_of_units_future = INPUT_VALUE(buildings_number_of_buildings_present); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_for_space_heating_buildings_present, preset_demand)}); - - EACH( - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_buildings_present, USER_INPUT()), - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_present)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_buildings_present),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_buildings_present),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_buildings_present) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future diff --git a/inputs/demand/buildings/buildings_insulation/buildings_insulation_new_buildings.ad b/inputs/demand/buildings/buildings_insulation/buildings_insulation_new_buildings.ad new file mode 100644 index 0000000000..4dbac3bd48 --- /dev/null +++ b/inputs/demand/buildings/buildings_insulation/buildings_insulation_new_buildings.ad @@ -0,0 +1,21 @@ +# Sets the reduction in heating demand of new buildings due to improved insulation. It updates: +# - Useful demand for space heating +# - Typical useful heat demand area attribute +# - Investment costs for insulation +# +# Priority is set to 1 to go after number of buildings but before behaviour sliders. + +- query = + relative_change = DIVIDE(100.0 - USER_INPUT(), 100.0); + EACH( + UPDATE_WITH_FACTOR(V(buildings_useful_demand_for_space_heating_buildings_future), preset_demand, relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_buildings_future, relative_change), + UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_future)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_demolished.ad b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_demolished.ad new file mode 100644 index 0000000000..9aba62f5bb --- /dev/null +++ b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_demolished.ad @@ -0,0 +1,42 @@ +# Sets the demolition of existing buildings. It updates: +# - Useful demand for space heating for existing buildings +# - Useful demand for cooling (combined effect total nr of buildings) +# - Useful demand for lighting (combined effect total nr of buildings) +# - Useful demand for appliances (combined effect total nr of buildings) +# - Roof surface of buildings available for PV (combined effect total nr of buildings) +# - Number of units of existing buildings +# +# Priority set to 3 to go before insulation, weather_curve_set, heating behaviour, appliances efficiency and +# development of demand sliders. + +- query = + number_of_existing_buildings_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings)}); + number_of_buildings_demolished = USER_INPUT(); + number_of_existing_buildings_future = number_of_existing_buildings_present - number_of_buildings_demolished; + number_of_new_buildings_future = INPUT_VALUE(buildings_number_of_buildings_new); + total_number_of_buildings_future = number_of_existing_buildings_future + number_of_new_buildings_future; + + relative_change_existing_buildings = DIVIDE(number_of_existing_buildings_future, number_of_existing_buildings_present); + relative_change_total = DIVIDE(total_number_of_buildings_future, number_of_existing_buildings_present); + + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_cooling, preset_demand)})); + useful_lighting_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_light, preset_demand)})); + useful_appliances_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_for_appliances, preset_demand)})); + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(buildings_roof_surface_available_for_pv)})); + + EACH( + UPDATE_WITH_FACTOR(V(buildings_useful_demand_for_space_heating_buildings_present), preset_demand, relative_change_existing_buildings), + UPDATE(V(buildings_useful_demand_cooling), preset_demand, useful_cooling_demand_future), + UPDATE(V(buildings_useful_demand_light), preset_demand, useful_lighting_demand_future), + UPDATE(V(buildings_useful_demand_for_appliances), preset_demand, useful_appliances_demand_future), + UPDATE(AREA(), buildings_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal), number_of_units, number_of_existing_buildings_future) + ) + +- priority = 3 +- max_value_gql = present:AREA(present_number_of_buildings) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_future.ad b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_future.ad deleted file mode 100644 index 2480d92947..0000000000 --- a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_future.ad +++ /dev/null @@ -1,44 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the number of buildings_future -# - updates the insulation costs -# - the roof surface available for solar PV on buildings based on the changed total number of buildings -# - the total useful demand for cooling based on the changed total number of buildings -# - the total useful demand for lighting based on the changed total number of buildings -# - the total useful demand for appliances based on the changed total number of buildings -# - the electricity production of buildings solar PV, because user sets a share of the potential - -- query = - insulation_value_future = INPUT_VALUE(buildings_insulation_level_buildings_future); - number_of_units_future = USER_INPUT(); - typical_surface_area_per_unit = AREA(area_per_building_residence_equivalent); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings)}); - total_number_of_units_future = USER_INPUT() + INPUT_VALUE(buildings_number_of_buildings_present); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_cooling, preset_demand)}); - useful_lighting_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_light, preset_demand)}); - useful_appliances_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_for_appliances, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(buildings_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future), preset_demand, useful_heat_demand_future), - UPDATE(V(buildings_useful_demand_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(V(buildings_useful_demand_light), preset_demand, useful_lighting_demand_future), - UPDATE(V(buildings_useful_demand_for_appliances), preset_demand, useful_appliances_demand_future), - UPDATE(AREA(), buildings_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal), number_of_units, USER_INPUT()), - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_future)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_buildings) -- min_value = 0.0 -- start_value = 0.0 -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_new.ad b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_new.ad new file mode 100644 index 0000000000..7f7052612e --- /dev/null +++ b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_new.ad @@ -0,0 +1,46 @@ +# Sets the number of new buildings. It updates: +# - Useful demand for space heating for new buildings, using typical heat demand area attribute +# - Useful demand for cooling (combined effect total nr of buildings) +# - Useful demand for lighting (combined effect total nr of buildings) +# - Useful demand for appliances (combined effect total nr of buildings) +# - Roof surface of buildings available for PV (combined effect total nr of buildings) +# - Number of units of new buildings +# +# Priority set to 3 to go before insulation, weather_curve_set, heating behaviour, appliances efficiency and +# development of demand sliders. + +- query = + number_of_existing_buildings_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings)}); + number_of_buildings_demolished = INPUT_VALUE(buildings_number_of_buildings_demolished); + number_of_existing_buildings_future = number_of_existing_buildings_present - number_of_buildings_demolished; + number_of_new_buildings_future = USER_INPUT(); + total_number_of_buildings_future = number_of_existing_buildings_future + number_of_new_buildings_future; + + insulation_value_new_buildings = AREA(typical_useful_demand_for_space_heating_buildings_future); + typical_surface_area_per_unit = AREA(area_per_building_residence_equivalent); + heat_demand_per_unit = insulation_value_new_buildings * typical_surface_area_per_unit * MJ_PER_KWH; + + relative_change_total = DIVIDE(total_number_of_buildings_future, number_of_existing_buildings_present); + + useful_heat_demand_new_buildings_future = PRODUCT(number_of_new_buildings_future, heat_demand_per_unit); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_cooling, preset_demand)})); + useful_lighting_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_light, preset_demand)})); + useful_appliances_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(buildings_useful_demand_for_appliances, preset_demand)})); + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(buildings_roof_surface_available_for_pv)})); + + EACH( + UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future), preset_demand, useful_heat_demand_new_buildings_future), + UPDATE(V(buildings_useful_demand_cooling), preset_demand, useful_cooling_demand_future), + UPDATE(V(buildings_useful_demand_light), preset_demand, useful_lighting_demand_future), + UPDATE(V(buildings_useful_demand_for_appliances), preset_demand, useful_appliances_demand_future), + UPDATE(AREA(), buildings_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal), number_of_units, number_of_new_buildings_future) + ) + +- priority = 3 +- max_value_gql = present:AREA(present_number_of_buildings) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_present.ad b/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_present.ad deleted file mode 100644 index ba0e0abde5..0000000000 --- a/inputs/demand/buildings/buildings_number/buildings_number_of_buildings_present.ad +++ /dev/null @@ -1,48 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of buildings_present -# - updates the insulation costs -# - the roof surface available for solar PV on buildings based on the changed total number of buildings -# - the total useful demand for cooling based on the changed total number of buildings -# - the total useful demand for lighting based on the changed total number of buildings -# - the total useful demand for appliances based on the changed total number of buildings -# - the electricity production of buildings solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_buildings_present) }); - insulation_value_future = INPUT_VALUE(buildings_insulation_level_buildings_present); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_buildings)}); - total_number_of_units_future = USER_INPUT() + INPUT_VALUE(buildings_number_of_buildings_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_for_space_heating_buildings_present, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_cooling, preset_demand)}); - useful_lighting_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_light, preset_demand)}); - useful_appliances_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(buildings_useful_demand_for_appliances, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(buildings_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present), preset_demand, useful_heat_demand_future), - UPDATE(V(buildings_useful_demand_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(V(buildings_useful_demand_light), preset_demand, useful_lighting_demand_future), - UPDATE(V(buildings_useful_demand_for_appliances), preset_demand, useful_appliances_demand_future), - UPDATE(AREA(), buildings_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal), number_of_units, USER_INPUT()), - UPDATE(V(buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_buildings_present)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_buildings) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_buildings) -- step_value = 1.0 -- unit = # -- update_period = future diff --git a/inputs/demand/bunkers/bunkers_allocated_percentage_aviation.ad b/inputs/demand/bunkers/bunkers_allocated_percentage_aviation.ad index e16985c766..b083e2df1d 100644 --- a/inputs/demand/bunkers/bunkers_allocated_percentage_aviation.ad +++ b/inputs/demand/bunkers/bunkers_allocated_percentage_aviation.ad @@ -1,7 +1,9 @@ # Updates both useful demand for international shipping and other_ghg emissions value # Start year value for other_ghg is taken from emissions file and converted from kton to kg +# Priority set to 1 to go before bunkers_useful_demand_planes and +# emissions_bunkers_international_aviation_energetic_other_ghg -- priority = 0 +- priority = 1 - max_value = 100.0 - min_value = 0.0 - start_value = 0.0 diff --git a/inputs/demand/bunkers/bunkers_allocated_percentage_shipping.ad b/inputs/demand/bunkers/bunkers_allocated_percentage_shipping.ad index 91dbe5175f..d6c3c11f1a 100644 --- a/inputs/demand/bunkers/bunkers_allocated_percentage_shipping.ad +++ b/inputs/demand/bunkers/bunkers_allocated_percentage_shipping.ad @@ -1,7 +1,9 @@ # Updates both useful demand for international shipping and other_ghg emissions value # Start year value for other_ghg is taken from emissions file and converted from kton to kg +# Priority set to 1 to go before bunkers_useful_demand_ships and +# emissions_bunkers_international_navigation_energetic_other_ghg -- priority = 0 +- priority = 1 - max_value = 100.0 - min_value = 0.0 - start_value = 0.0 diff --git a/inputs/demand/bunkers/bunkers_useful_demand_planes.ad b/inputs/demand/bunkers/bunkers_useful_demand_planes.ad index 278c44ce4e..0cc532a843 100644 --- a/inputs/demand/bunkers/bunkers_useful_demand_planes.ad +++ b/inputs/demand/bunkers/bunkers_useful_demand_planes.ad @@ -1,3 +1,5 @@ +# Priority set to 0 to go after bunkers_allocated_percentage_aviation + - query = UPDATE(V(bunkers_useful_demand_planes), preset_demand, USER_INPUT()) - priority = 0 - max_value = 10.0 diff --git a/inputs/demand/bunkers/bunkers_useful_demand_ships.ad b/inputs/demand/bunkers/bunkers_useful_demand_ships.ad index 2e29159f84..047d00cb2b 100644 --- a/inputs/demand/bunkers/bunkers_useful_demand_ships.ad +++ b/inputs/demand/bunkers/bunkers_useful_demand_ships.ad @@ -1,3 +1,5 @@ +# Priority set to 0 to go after bunkers_allocated_percentage_shipping + - query = UPDATE(V(bunkers_useful_demand_ships), preset_demand, USER_INPUT()) - priority = 0 - max_value = 5.0 diff --git a/inputs/demand/households/households_demand/households_space_heating_behaviour.ad b/inputs/demand/households/households_demand/households_space_heating_behaviour.ad new file mode 100644 index 0000000000..64ed1e27d4 --- /dev/null +++ b/inputs/demand/households/households_demand/households_space_heating_behaviour.ad @@ -0,0 +1,50 @@ +# This sets the change in heat demand due to behaviour of all residence types and construction periods. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + relative_change = DIVIDE((100.0 + USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_future), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_future), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_future), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_future), preset_demand, relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_2005_present), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_2005_present), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), preset_demand, relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1985_2004), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), preset_demand, relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1965_1984), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), preset_demand, relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1945_1964), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), preset_demand, relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_before_1945), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_before_1945), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), preset_demand, relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), preset_demand, relative_change) + ) +- priority = 0 +- max_value = 50.0 +- min_value = -50.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_1945_1964.ad b/inputs/demand/households/households_insulation/households_insulation_1945_1964.ad new file mode 100644 index 0000000000..bc76f2282a --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_1945_1964.ad @@ -0,0 +1,39 @@ +# This input sets reduction of heat demand due to improved insulation for residences built between +# 1945 and 1964 and updates the typical useful demand area attributes and preset demand for space +# heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_1945_1964, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_1945_1964, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1945_1964, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1945_1964), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1945_1964)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1945_1964)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1945_1964)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1945_1964)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_1965_1984.ad b/inputs/demand/households/households_insulation/households_insulation_1965_1984.ad new file mode 100644 index 0000000000..ccbecc622b --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_1965_1984.ad @@ -0,0 +1,39 @@ +# This input sets reduction of heat demand due to improved insulation for residences built between +# 1965 and 1984 and updates the typical useful demand area attributes and preset demand for space +# heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_1965_1984, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_1965_1984, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1965_1984, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1965_1984), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1965_1984)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1965_1984)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1965_1984)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1965_1984)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_1985_2004.ad b/inputs/demand/households/households_insulation/households_insulation_1985_2004.ad new file mode 100644 index 0000000000..8010127d08 --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_1985_2004.ad @@ -0,0 +1,39 @@ +# This input sets reduction of heat demand due to improved insulation for residences built between +# 1985 and 2004 and updates the typical useful demand area attributes and preset demand for space +# heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_1985_2004, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_1985_2004, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1985_2004, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_1985_2004), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1985_2004)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1985_2004)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1985_2004)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1985_2004)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_2005_present.ad b/inputs/demand/households/households_insulation/households_insulation_2005_present.ad new file mode 100644 index 0000000000..9f6cfd9703 --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_2005_present.ad @@ -0,0 +1,39 @@ +# This input sets reduction of heat demand due to improved insulation for residences built from +# 2005 to present and updates the typical useful demand area attributes and preset demand for space +# heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_2005_present, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_2005_present, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_2005_present, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_2005_present, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_2005_present), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_2005_present), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_2005_present)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_2005_present)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_2005_present)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_2005_present)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_before_1945.ad b/inputs/demand/households/households_insulation/households_insulation_before_1945.ad new file mode 100644 index 0000000000..6b0701cd05 --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_before_1945.ad @@ -0,0 +1,38 @@ +# This input sets reduction of heat demand due to improved insulation for residences built before +# 1945 and updates the typical useful demand area attributes and preset demand for space heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_before_1945, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_before_1945, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_before_1945, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_before_1945, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_before_1945), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_before_1945), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_before_1945)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_before_1945)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_before_1945)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_before_1945)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1945_1964.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_1945_1964.ad deleted file mode 100644 index 1915bc3424..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1945_1964.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1945_1964) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1945_1964) }); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_1945_1964); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1945_1964, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_1945_1964, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1945_1964)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_1945_1964),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_1945_1964),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_1945_1964) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1965_1984.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_1965_1984.ad deleted file mode 100644 index b2f1999d1c..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1965_1984.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1965_1984) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1965_1984) }); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_1965_1984); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1965_1984, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_1965_1984, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1965_1984)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_1965_1984),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_1965_1984),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_1965_1984) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1985_2004.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_1985_2004.ad deleted file mode 100644 index 19d352fc7d..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_1985_2004.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1985_2004) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1985_2004) }); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_1985_2004); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1985_2004, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_1985_2004, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1985_2004)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_1985_2004),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_1985_2004),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_1985_2004) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_2005_present.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_2005_present.ad deleted file mode 100644 index 953c96fb46..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_2005_present.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_2005_present) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_2005_present) }); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_2005_present); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_2005_present, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_2005_present, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_2005_present)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_2005_present),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_2005_present),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_2005_present) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_before_1945.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_before_1945.ad deleted file mode 100644 index 438c23b266..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_before_1945.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_before_1945) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_before_1945) }); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_before_1945); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_before_1945, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_before_1945, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_before_1945)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_before_1945),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_before_1945),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_before_1945) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_apartments_future.ad b/inputs/demand/households/households_insulation/households_insulation_level_apartments_future.ad deleted file mode 100644 index d3843f04d3..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_apartments_future.ad +++ /dev/null @@ -1,27 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the insulation value -# - updates the insulation costs -# Typical surface area per buildings is based on nl2019 value for apartments from 2005 to present - -- query = - insulation_value_future = USER_INPUT(); - number_of_units_future = INPUT_VALUE(households_number_of_apartments_future); - typical_surface_area_per_unit = 84.0916691776263; - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_future), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_apartments_future, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_future)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_apartments_future),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_apartments_future),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_apartments_future) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1945_1964.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1945_1964.ad deleted file mode 100644 index be21d381c6..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1945_1964.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1945_1964) }); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_1945_1964); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1945_1964, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_1945_1964, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1945_1964)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1965_1984.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1965_1984.ad deleted file mode 100644 index da684d2ac4..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1965_1984.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1965_1984) }); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_1965_1984); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1965_1984, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_1965_1984, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1965_1984)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1985_2004.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1985_2004.ad deleted file mode 100644 index 2c1a3db895..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_1985_2004.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1985_2004) }); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_1985_2004); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1985_2004, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_1985_2004, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1985_2004)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_2005_present.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_2005_present.ad deleted file mode 100644 index 2bb5114a89..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_2005_present.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_2005_present) }); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_2005_present); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_2005_present, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_2005_present, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_2005_present)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_before_1945.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_before_1945.ad deleted file mode 100644 index ca0b61241b..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_before_1945.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_before_1945) }); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_before_1945); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_before_1945, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_before_1945, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_before_1945)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_future.ad b/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_future.ad deleted file mode 100644 index aa1d2d0950..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_detached_houses_future.ad +++ /dev/null @@ -1,27 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the insulation value -# - updates the insulation costs -# Typical surface area per buildings is based on nl2019 value for detached houses from 2005 to present - -- query = - insulation_value_future = USER_INPUT(); - number_of_units_future = INPUT_VALUE(households_number_of_detached_houses_future); - typical_surface_area_per_unit = 224.001485938283; - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_detached_houses_future, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_future)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_detached_houses_future),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_detached_houses_future),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_detached_houses_future) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1945_1964.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1945_1964.ad deleted file mode 100644 index 4640e0a07c..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1945_1964.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1945_1964) }); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1945_1964)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1965_1984.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1965_1984.ad deleted file mode 100644 index 6f6b4a8b32..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1965_1984.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1965_1984) }); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1965_1984)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1985_2004.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1985_2004.ad deleted file mode 100644 index b5a376219f..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_1985_2004.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1985_2004) }); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1985_2004)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_2005_present.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_2005_present.ad deleted file mode 100644 index 3d4e3868e7..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_2005_present.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_2005_present) }); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_2005_present); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_2005_present, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_2005_present)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_before_1945.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_before_1945.ad deleted file mode 100644 index cb5620013f..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_before_1945.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_before_1945) }); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_before_1945); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_before_1945, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_before_1945)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_future.ad b/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_future.ad deleted file mode 100644 index f61e21252f..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_semi_detached_houses_future.ad +++ /dev/null @@ -1,27 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the insulation value -# - updates the insulation costs -# Typical surface area per buildings is based on nl2019 value for semi detached houses from 2005 to present - -- query = - insulation_value_future = USER_INPUT(); - number_of_units_future = INPUT_VALUE(households_number_of_semi_detached_houses_future); - typical_surface_area_per_unit = 147.709471392282; - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_future, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_future)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_future),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_semi_detached_houses_future),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_semi_detached_houses_future) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1945_1964.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1945_1964.ad deleted file mode 100644 index 52def98014..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1945_1964.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1945_1964) }); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_1945_1964); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1945_1964, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1945_1964, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1945_1964)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1965_1984.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1965_1984.ad deleted file mode 100644 index 5ebe7337d1..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1965_1984.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1965_1984) }); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_1965_1984); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1965_1984, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1965_1984, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1965_1984)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1985_2004.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1985_2004.ad deleted file mode 100644 index 0ccc6b2297..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_1985_2004.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1985_2004) }); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_1985_2004); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1985_2004, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_1985_2004, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1985_2004)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_2005_present.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_2005_present.ad deleted file mode 100644 index fc9c776d2f..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_2005_present.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_2005_present) }); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_2005_present); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_2005_present, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_2005_present, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_2005_present)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_before_1945.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_before_1945.ad deleted file mode 100644 index 03eaf21214..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_before_1945.ad +++ /dev/null @@ -1,31 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the insulation value -# - updates the insulation costs - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945) }); - insulation_value_future = USER_INPUT(); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_before_1945) }); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_before_1945); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_before_1945, preset_demand)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_before_1945, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_before_1945)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_future.ad b/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_future.ad deleted file mode 100644 index 6320c8591b..0000000000 --- a/inputs/demand/households/households_insulation/households_insulation_level_terraced_houses_future.ad +++ /dev/null @@ -1,27 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the insulation value -# - updates the insulation costs -# Typical surface area per buildings is based on nl2019 value for terraced houses from 2005 to present - -- query = - insulation_value_future = USER_INPUT(); - number_of_units_future = INPUT_VALUE(households_number_of_terraced_houses_future); - typical_surface_area_per_unit = 130.419159051538; - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(AREA(), typical_useful_demand_for_space_heating_terraced_houses_future, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_future)})) - ) -- priority = 1 -- max_value_gql = present:MAX(AREA(typical_useful_demand_for_space_heating_terraced_houses_future),500.0) -- min_value_gql = present:MIN(AREA(typical_useful_demand_for_space_heating_terraced_houses_future),1.0) -- start_value_gql = present:AREA(typical_useful_demand_for_space_heating_terraced_houses_future) -- step_value = 0.1 -- unit = kWh/m2 -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_insulation/households_insulation_new_residences.ad b/inputs/demand/households/households_insulation/households_insulation_new_residences.ad new file mode 100644 index 0000000000..a63f919547 --- /dev/null +++ b/inputs/demand/households/households_insulation/households_insulation_new_residences.ad @@ -0,0 +1,38 @@ +# This input sets reduction of heat demand due to improved insulation and updates the typical +# useful demand area attributes and preset demand for space heating. +# Finally the new values are used to calculate the initial investment costs for insulation in the +# respective queries. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + insulation_relative_change = DIVIDE(100.0 + NEG(USER_INPUT()), 100.0); + + EACH( + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_apartments_future, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_detached_houses_future, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_semi_detached_houses_future, insulation_relative_change), + UPDATE_WITH_FACTOR(AREA(), typical_useful_demand_for_space_heating_terraced_houses_future, insulation_relative_change), + + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_apartments_future), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_detached_houses_future), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_semi_detached_houses_future), preset_demand, insulation_relative_change), + UPDATE_WITH_FACTOR(V(households_useful_demand_for_space_heating_terraced_houses_future), preset_demand, insulation_relative_change), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_future)})), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_future)})), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_future)})), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_future)})) + ) +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value = 0.0 +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_number/demolished_residences/households_demolished_1945_1964.ad b/inputs/demand/households/households_number/demolished_residences/households_demolished_1945_1964.ad new file mode 100644 index 0000000000..1f4418103b --- /dev/null +++ b/inputs/demand/households/households_number/demolished_residences/households_demolished_1945_1964.ad @@ -0,0 +1,44 @@ +# This input sets the demolished residence for one construction period. +# It updates the total number of residences, roof surface for pv, total cooling demand. +# It also updates the number of units and useful demand for all residence types within this construction period individually. +# +# Related priorities are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + total_number_of_residences_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_residences_present_1945_1964 = QUERY_PRESENT(-> {Q(number_of_residences_1945_1964)}); + number_of_residences_demolished_1945_1964 = USER_INPUT(); + number_of_residences_future_1945_1964 = number_of_residences_present_1945_1964 - number_of_residences_demolished_1945_1964; + + number_of_residences_demolished_total = Q(number_of_demolished_residences); + number_of_residences_new = INPUT_VALUE(households_number_of_residences_new); + total_number_of_residences_future = ( + total_number_of_residences_present - + number_of_residences_demolished_total + + number_of_residences_new); + + relative_change_total = DIVIDE(total_number_of_residences_future, total_number_of_residences_present); + relative_change_1945_1964 = DIVIDE(number_of_residences_future_1945_1964, number_of_residences_present_1945_1964); + + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_residences_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + UPDATE_WITH_FACTOR(V(G(households_1945_1964)), preset_demand, relative_change_1945_1964), + UPDATE_WITH_FACTOR(V(G(households_1945_1964)), number_of_units, relative_change_1945_1964), + ) +- priority = 3 +- max_value_gql = present:Q(number_of_residences_1945_1964) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/demolished_residences/households_demolished_1965_1984.ad b/inputs/demand/households/households_number/demolished_residences/households_demolished_1965_1984.ad new file mode 100644 index 0000000000..644ab7438c --- /dev/null +++ b/inputs/demand/households/households_number/demolished_residences/households_demolished_1965_1984.ad @@ -0,0 +1,44 @@ +# This input sets the demolished residence for one construction period. +# It updates the total number of residences, roof surface for pv, total cooling demand. +# It also updates the number of units and useful demand for all residence types within this construction period individually. +# +# Related priorities are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + total_number_of_residences_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_residences_present_1965_1984 = QUERY_PRESENT(-> {Q(number_of_residences_1965_1984)}); + number_of_residences_demolished_1965_1984 = USER_INPUT(); + number_of_residences_future_1965_1984 = number_of_residences_present_1965_1984 - number_of_residences_demolished_1965_1984; + + number_of_residences_demolished_total = Q(number_of_demolished_residences); + number_of_residences_new = INPUT_VALUE(households_number_of_residences_new); + total_number_of_residences_future = ( + total_number_of_residences_present - + number_of_residences_demolished_total + + number_of_residences_new); + + relative_change_total = DIVIDE(total_number_of_residences_future, total_number_of_residences_present); + relative_change_1965_1984 = DIVIDE(number_of_residences_future_1965_1984, number_of_residences_present_1965_1984); + + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_residences_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + UPDATE_WITH_FACTOR(V(G(households_1965_1984)), preset_demand, relative_change_1965_1984), + UPDATE_WITH_FACTOR(V(G(households_1965_1984)), number_of_units, relative_change_1965_1984), + ) +- priority = 3 +- max_value_gql = present:Q(number_of_residences_1965_1984) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/demolished_residences/households_demolished_1985_2004.ad b/inputs/demand/households/households_number/demolished_residences/households_demolished_1985_2004.ad new file mode 100644 index 0000000000..24d0f183d2 --- /dev/null +++ b/inputs/demand/households/households_number/demolished_residences/households_demolished_1985_2004.ad @@ -0,0 +1,44 @@ +# This input sets the demolished residence for one construction period. +# It updates the total number of residences, roof surface for pv, total cooling demand. +# It also updates the number of units and useful demand for all residence types within this construction period individually. +# +# Related priorities are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + total_number_of_residences_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_residences_present_1985_2004 = QUERY_PRESENT(-> {Q(number_of_residences_1985_2004)}); + number_of_residences_demolished_1985_2004 = USER_INPUT(); + number_of_residences_future_1985_2004 = number_of_residences_present_1985_2004 - number_of_residences_demolished_1985_2004; + + number_of_residences_demolished_total = Q(number_of_demolished_residences); + number_of_residences_new = INPUT_VALUE(households_number_of_residences_new); + total_number_of_residences_future = ( + total_number_of_residences_present - + number_of_residences_demolished_total + + number_of_residences_new); + + relative_change_total = DIVIDE(total_number_of_residences_future, total_number_of_residences_present); + relative_change_1985_2004 = DIVIDE(number_of_residences_future_1985_2004, number_of_residences_present_1985_2004); + + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_residences_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + UPDATE_WITH_FACTOR(V(G(households_1985_2004)), preset_demand, relative_change_1985_2004), + UPDATE_WITH_FACTOR(V(G(households_1985_2004)), number_of_units, relative_change_1985_2004), + ) +- priority = 3 +- max_value_gql = present:Q(number_of_residences_1985_2004) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/demolished_residences/households_demolished_2005_present.ad b/inputs/demand/households/households_number/demolished_residences/households_demolished_2005_present.ad new file mode 100644 index 0000000000..399d58f65f --- /dev/null +++ b/inputs/demand/households/households_number/demolished_residences/households_demolished_2005_present.ad @@ -0,0 +1,44 @@ +# This input sets the demolished residence for one construction period. +# It updates the total number of residences, roof surface for pv, total cooling demand. +# It also updates the number of units and useful demand for all residence types within this construction period individually. +# +# Related priorities are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + total_number_of_residences_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_residences_present_2005_present = QUERY_PRESENT(-> {Q(number_of_residences_2005_present)}); + number_of_residences_demolished_2005_present = USER_INPUT(); + number_of_residences_future_2005_present = number_of_residences_present_2005_present - number_of_residences_demolished_2005_present; + + number_of_residences_demolished_total = Q(number_of_demolished_residences); + number_of_residences_new = INPUT_VALUE(households_number_of_residences_new); + total_number_of_residences_future = ( + total_number_of_residences_present - + number_of_residences_demolished_total + + number_of_residences_new); + + relative_change_total = DIVIDE(total_number_of_residences_future, total_number_of_residences_present); + relative_change_2005_present = DIVIDE(number_of_residences_future_2005_present, number_of_residences_present_2005_present); + + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_residences_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + UPDATE_WITH_FACTOR(V(G(households_2005_present)), preset_demand, relative_change_2005_present), + UPDATE_WITH_FACTOR(V(G(households_2005_present)), number_of_units, relative_change_2005_present), + ) +- priority = 3 +- max_value_gql = present:Q(number_of_residences_2005_present) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/demolished_residences/households_demolished_before_1945.ad b/inputs/demand/households/households_number/demolished_residences/households_demolished_before_1945.ad new file mode 100644 index 0000000000..455d4b0824 --- /dev/null +++ b/inputs/demand/households/households_number/demolished_residences/households_demolished_before_1945.ad @@ -0,0 +1,44 @@ +# This input sets the demolished residence for one construction period. +# It updates the total number of residences, roof surface for pv, total cooling demand. +# It also updates the number of units and useful demand for all residence types within this construction period individually. +# +# Related priorities are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration.ad + +- query = + total_number_of_residences_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_residences_present_before_1945 = QUERY_PRESENT(-> {Q(number_of_residences_before_1945)}); + number_of_residences_demolished_before_1945 = USER_INPUT(); + number_of_residences_future_before_1945 = number_of_residences_present_before_1945 - number_of_residences_demolished_before_1945; + + number_of_residences_demolished_total = Q(number_of_demolished_residences); + number_of_residences_new = INPUT_VALUE(households_number_of_residences_new); + total_number_of_residences_future = ( + total_number_of_residences_present - + number_of_residences_demolished_total + + number_of_residences_new); + + relative_change_total = DIVIDE(total_number_of_residences_future, total_number_of_residences_present); + relative_change_before_1945 = DIVIDE(number_of_residences_future_before_1945, number_of_residences_present_before_1945); + + roof_surface_for_pv_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change_total, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_residences_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + UPDATE_WITH_FACTOR(V(G(households_before_1945)), preset_demand, relative_change_before_1945), + UPDATE_WITH_FACTOR(V(G(households_before_1945)), number_of_units, relative_change_before_1945), + ) +- priority = 3 +- max_value_gql = present:Q(number_of_residences_before_1945) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/households_number_of_apartments_1945_1964.ad b/inputs/demand/households/households_number/households_number_of_apartments_1945_1964.ad deleted file mode 100644 index 06d4b94cca..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_1945_1964.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of apartments_1945_1964 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1945_1964) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_1945_1964); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1945_1964) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - USER_INPUT() + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1945_1964, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1945_1964)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_apartments_1945_1964) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_apartments_1945_1964) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_apartments_1965_1984.ad b/inputs/demand/households/households_number/households_number_of_apartments_1965_1984.ad deleted file mode 100644 index 8e5140d7d9..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_1965_1984.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of apartments_1965_1984 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1965_1984) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_1965_1984); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1965_1984) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - USER_INPUT() + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1965_1984, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1965_1984)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_apartments_1965_1984) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_apartments_1965_1984) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_apartments_1985_2004.ad b/inputs/demand/households/households_number/households_number_of_apartments_1985_2004.ad deleted file mode 100644 index e1b064202c..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_1985_2004.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of apartments_1985_2004 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_1985_2004) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_1985_2004); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_1985_2004) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - USER_INPUT() + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_1985_2004, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_1985_2004)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_apartments_1985_2004) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_apartments_1985_2004) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_apartments_2005_present.ad b/inputs/demand/households/households_number/households_number_of_apartments_2005_present.ad deleted file mode 100644 index 858ea284c5..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_2005_present.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of apartments_2005_present -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_2005_present) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_2005_present); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_2005_present) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - USER_INPUT() + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_2005_present, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_2005_present)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_apartments_2005_present) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_apartments_2005_present) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_apartments_before_1945.ad b/inputs/demand/households/households_number/households_number_of_apartments_before_1945.ad deleted file mode 100644 index b5d45df19c..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_before_1945.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of apartments_before_1945 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_apartments_before_1945) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_before_1945); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_apartments_before_1945) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - USER_INPUT() + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_apartments_before_1945, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_before_1945)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_apartments_before_1945) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_apartments_before_1945) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_apartments_future.ad b/inputs/demand/households/households_number/households_number_of_apartments_future.ad deleted file mode 100644 index af9db9e35a..0000000000 --- a/inputs/demand/households/households_number/households_number_of_apartments_future.ad +++ /dev/null @@ -1,67 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the number of apartments_future -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential -# Typical surface area per buildings is based on nl2019 value for apartments from 2005 to present - -- query = - insulation_value_future = INPUT_VALUE(households_insulation_level_apartments_future); - number_of_units_future = USER_INPUT(); - typical_surface_area_per_unit = 84.0916691776263; - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_apartments_future), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_apartments_future), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_apartments_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_apartments_future)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(QUERY_FUTURE(-> { Q(number_of_residences)}), DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, QUERY_FUTURE(-> { Q(number_of_residences)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_residences) -- min_value = 0.0 -- start_value = 0.0 -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_1945_1964.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_1945_1964.ad deleted file mode 100644 index 69a5f76317..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_1945_1964.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of detached_houses_1945_1964 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1945_1964) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_1945_1964); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1945_1964) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1945_1964, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1945_1964)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_detached_houses_1945_1964) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_detached_houses_1945_1964) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_1965_1984.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_1965_1984.ad deleted file mode 100644 index c4abb3d540..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_1965_1984.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of detached_houses_1965_1984 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1965_1984) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_1965_1984); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1965_1984) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1965_1984, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1965_1984)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_detached_houses_1965_1984) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_detached_houses_1965_1984) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_1985_2004.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_1985_2004.ad deleted file mode 100644 index f9e5d8775a..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_1985_2004.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of detached_houses_1985_2004 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_1985_2004) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_1985_2004); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_1985_2004) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_1985_2004, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_1985_2004)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_detached_houses_1985_2004) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_detached_houses_1985_2004) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_2005_present.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_2005_present.ad deleted file mode 100644 index 5b7505ac04..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_2005_present.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of detached_houses_2005_present -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_2005_present) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_2005_present); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_2005_present) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_2005_present, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_2005_present)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_detached_houses_2005_present) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_detached_houses_2005_present) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_before_1945.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_before_1945.ad deleted file mode 100644 index 22d1fd7f8d..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_before_1945.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of detached_houses_before_1945 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_detached_houses_before_1945) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_before_1945); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_detached_houses_before_1945) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - USER_INPUT() + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_detached_houses_before_1945, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_before_1945)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_detached_houses_before_1945) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_detached_houses_before_1945) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_detached_houses_future.ad b/inputs/demand/households/households_number/households_number_of_detached_houses_future.ad deleted file mode 100644 index aa710c1519..0000000000 --- a/inputs/demand/households/households_number/households_number_of_detached_houses_future.ad +++ /dev/null @@ -1,67 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the number of detached_houses_future -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential -# Typical surface area per buildings is based on nl2019 value for detached houses from 2005 to present - -- query = - insulation_value_future = INPUT_VALUE(households_insulation_level_detached_houses_future); - number_of_units_future = USER_INPUT(); - typical_surface_area_per_unit = 224.001485938283; - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_detached_houses_future)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(QUERY_FUTURE(-> { Q(number_of_residences)}), DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, QUERY_FUTURE(-> { Q(number_of_residences)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_residences) -- min_value = 0.0 -- start_value = 0.0 -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1945_1964.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1945_1964.ad deleted file mode 100644 index f0e2537565..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1945_1964.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of semi_detached_houses_1945_1964 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1945_1964) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_1945_1964); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1945_1964) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1945_1964)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_semi_detached_houses_1945_1964) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_semi_detached_houses_1945_1964) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1965_1984.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1965_1984.ad deleted file mode 100644 index 6fbd47da6e..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1965_1984.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of semi_detached_houses_1965_1984 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1965_1984) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_1965_1984); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1965_1984) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1965_1984)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_semi_detached_houses_1965_1984) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_semi_detached_houses_1965_1984) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1985_2004.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1985_2004.ad deleted file mode 100644 index aa31ac7c34..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_1985_2004.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of semi_detached_houses_1985_2004 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_1985_2004) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_1985_2004); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_1985_2004) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_1985_2004)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_semi_detached_houses_1985_2004) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_semi_detached_houses_1985_2004) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_2005_present.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_2005_present.ad deleted file mode 100644 index cc7edce138..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_2005_present.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of semi_detached_houses_2005_present -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_2005_present) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_2005_present); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_2005_present) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_2005_present)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_semi_detached_houses_2005_present) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_semi_detached_houses_2005_present) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_before_1945.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_before_1945.ad deleted file mode 100644 index 7465347777..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_before_1945.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of semi_detached_houses_before_1945 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_semi_detached_houses_before_1945) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_before_1945); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_semi_detached_houses_before_1945) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - USER_INPUT() + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_before_1945)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_semi_detached_houses_before_1945) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_semi_detached_houses_before_1945) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_future.ad b/inputs/demand/households/households_number/households_number_of_semi_detached_houses_future.ad deleted file mode 100644 index 2e01e4e102..0000000000 --- a/inputs/demand/households/households_number/households_number_of_semi_detached_houses_future.ad +++ /dev/null @@ -1,67 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the number of semi_detached_houses_future -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential -# Typical surface area per buildings is based on nl2019 value for semi detached houses from 2005 to present - -- query = - insulation_value_future = INPUT_VALUE(households_insulation_level_semi_detached_houses_future); - number_of_units_future = USER_INPUT(); - typical_surface_area_per_unit = 147.709471392282; - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_semi_detached_houses_future)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(QUERY_FUTURE(-> { Q(number_of_residences)}), DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, QUERY_FUTURE(-> { Q(number_of_residences)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_residences) -- min_value = 0.0 -- start_value = 0.0 -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_1945_1964.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_1945_1964.ad deleted file mode 100644 index bb62e269bc..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_1945_1964.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of terraced_houses_1945_1964 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1945_1964) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_1945_1964); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1945_1964) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1945_1964, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1945_1964), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1945_1964)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_terraced_houses_1945_1964) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_terraced_houses_1945_1964) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_1965_1984.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_1965_1984.ad deleted file mode 100644 index 5e9f1a4fd8..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_1965_1984.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of terraced_houses_1965_1984 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1965_1984) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_1965_1984); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1965_1984) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1965_1984, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1965_1984), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1965_1984)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_terraced_houses_1965_1984) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_terraced_houses_1965_1984) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_1985_2004.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_1985_2004.ad deleted file mode 100644 index cf384adfb5..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_1985_2004.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of terraced_houses_1985_2004 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_1985_2004) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_1985_2004); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_1985_2004) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_1985_2004, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_1985_2004), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_1985_2004)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_terraced_houses_1985_2004) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_terraced_houses_1985_2004) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_2005_present.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_2005_present.ad deleted file mode 100644 index c426069682..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_2005_present.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of terraced_houses_2005_present -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_2005_present) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_2005_present); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_2005_present) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_2005_present, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_2005_present), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_2005_present)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_terraced_houses_2005_present) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_terraced_houses_2005_present) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_before_1945.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_before_1945.ad deleted file mode 100644 index 8708ec0bb3..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_before_1945.ad +++ /dev/null @@ -1,71 +0,0 @@ -# This input: -# - calculates the relative decrease in demand through insulation -# - calculates the relative decrease in demand through demolition -# - updates the demand using the combined relative change in demand -# - updates the number of terraced_houses_before_1945 -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential - -- query = - insulation_value_present = QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_terraced_houses_before_1945) }); - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_before_1945); - insulation_relative_change = DIVIDE(insulation_value_future,insulation_value_present); - - number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_terraced_houses_before_1945) }); - number_of_units_future = USER_INPUT(); - number_of_units_relative_change = DIVIDE(number_of_units_future,number_of_units_present); - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - USER_INPUT() + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - INPUT_VALUE(households_number_of_terraced_houses_future); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_relative_change * number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_space_heating_terraced_houses_before_1945, preset_demand)}); - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_before_1945), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_before_1945)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(total_number_of_units_future, DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_terraced_houses_before_1945) -- min_value = 0.0 -- start_value_gql = present:AREA(present_number_of_terraced_houses_before_1945) -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/households_number_of_terraced_houses_future.ad b/inputs/demand/households/households_number/households_number_of_terraced_houses_future.ad deleted file mode 100644 index ed53c30307..0000000000 --- a/inputs/demand/households/households_number/households_number_of_terraced_houses_future.ad +++ /dev/null @@ -1,67 +0,0 @@ -# This input: -# - calculates the total future demand through changes in insulation and construction -# - updates the demand using the total future demand -# - updates the number of terraced_houses_future -# - updates the insulation costs -# - updates the number of units of P2P based on the total number of residences -# - updates the number of residences for hot water demand -# - the roof surface available for solar PV on houses based on the changed total number of residences -# - the total useful demand for cooling based on the changed total number of residences -# - the electricity production of households solar PV, because user sets a share of the potential -# Typical surface area per buildings is based on nl2019 value for terraced houses from 2005 to present - -- query = - insulation_value_future = INPUT_VALUE(households_insulation_level_terraced_houses_future); - number_of_units_future = USER_INPUT(); - typical_surface_area_per_unit = 130.419159051538; - - total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); - total_number_of_units_future = - INPUT_VALUE(households_number_of_apartments_before_1945) + - INPUT_VALUE(households_number_of_apartments_1945_1964) + - INPUT_VALUE(households_number_of_apartments_1965_1984) + - INPUT_VALUE(households_number_of_apartments_1985_2004) + - INPUT_VALUE(households_number_of_apartments_2005_present) + - INPUT_VALUE(households_number_of_apartments_future) + - INPUT_VALUE(households_number_of_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_detached_houses_future) + - INPUT_VALUE(households_number_of_semi_detached_houses_before_1945) + - INPUT_VALUE(households_number_of_semi_detached_houses_1945_1964) + - INPUT_VALUE(households_number_of_semi_detached_houses_1965_1984) + - INPUT_VALUE(households_number_of_semi_detached_houses_1985_2004) + - INPUT_VALUE(households_number_of_semi_detached_houses_2005_present) + - INPUT_VALUE(households_number_of_semi_detached_houses_future) + - INPUT_VALUE(households_number_of_terraced_houses_before_1945) + - INPUT_VALUE(households_number_of_terraced_houses_1945_1964) + - INPUT_VALUE(households_number_of_terraced_houses_1965_1984) + - INPUT_VALUE(households_number_of_terraced_houses_1985_2004) + - INPUT_VALUE(households_number_of_terraced_houses_2005_present) + - USER_INPUT(); - total_number_of_units_relative_change = DIVIDE(total_number_of_units_future,total_number_of_units_present); - - useful_heat_demand_future = insulation_value_future * number_of_units_future * typical_surface_area_per_unit * MJ_PER_KWH; - useful_cooling_demand_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)}); - roof_surface_for_pv_future = total_number_of_units_relative_change * QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)}); - - EACH( - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), preset_demand, useful_heat_demand_future), - UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), - UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), - - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), number_of_units, USER_INPUT()), - UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), initial_investment, QUERY_FUTURE(-> { Q(costs_of_insulation_terraced_houses_future)})), - UPDATE(V(households_flexibility_p2p_electricity), number_of_units, PRODUCT(QUERY_FUTURE(-> { Q(number_of_residences)}), DIVIDE(INPUT_VALUE(households_flexibility_p2p_electricity_market_penetration),100.0))), - UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, QUERY_FUTURE(-> { Q(number_of_residences)})) - ) -- priority = 1 -- max_value_gql = present:AREA(present_number_of_residences) -- min_value = 0.0 -- start_value = 0.0 -- step_value = 1.0 -- unit = # -- update_period = future -- update_type = mixed diff --git a/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_apartments.ad b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_apartments.ad new file mode 100644 index 0000000000..421e33a506 --- /dev/null +++ b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_apartments.ad @@ -0,0 +1,19 @@ +# This input sets the share of new residences that will be apartments. +# The input updates nothing but is used in the input households_number_of_residences_new.ad +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration + +- query = UPDATE() +- share_group = households_new_residences +- priority = 4 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:Q(households_share_of_apartments) +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_detached.ad b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_detached.ad new file mode 100644 index 0000000000..4b506d3dc6 --- /dev/null +++ b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_detached.ad @@ -0,0 +1,19 @@ +# This input sets the share of new residences that will be detached houses. +# The input updates nothing but is used in the input households_number_of_residences_new.ad +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration + +- query = UPDATE() +- share_group = households_new_residences +- priority = 4 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:Q(households_share_of_detached) +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_semi_detached.ad b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_semi_detached.ad new file mode 100644 index 0000000000..13f1e565f3 --- /dev/null +++ b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_semi_detached.ad @@ -0,0 +1,19 @@ +# This input sets the share of new residences that will be semi detached houses. +# The input updates nothing but is used in the input households_number_of_residences_new.ad +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration + +- query = UPDATE() +- share_group = households_new_residences +- priority = 4 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:Q(households_share_of_semi_detached) +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_terraced.ad b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_terraced.ad new file mode 100644 index 0000000000..006e7e6609 --- /dev/null +++ b/inputs/demand/households/households_number/new_residences_share_per_type/households_share_of_terraced.ad @@ -0,0 +1,19 @@ +# This input sets the share of new residences that will be terraced houses. +# The input updates nothing but is used in the input households_number_of_residences_new.ad +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration + +- query = UPDATE() +- share_group = households_new_residences +- priority = 4 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:Q(households_share_of_terraced) +- step_value = 0.1 +- unit = % +- update_period = future diff --git a/inputs/demand/households/households_number/new_residences_total/households_number_of_residences_new.ad b/inputs/demand/households/households_number/new_residences_total/households_number_of_residences_new.ad new file mode 100644 index 0000000000..246641f100 --- /dev/null +++ b/inputs/demand/households/households_number/new_residences_total/households_number_of_residences_new.ad @@ -0,0 +1,89 @@ +# This input sets the number of new residences +# The hot water demand, roof area for PV and cooling demand +# are updated based on the new total number of residences. +# New number of residences is subsequently distributed across the 4 residence types using +# the share inputs for new residences. +# +# The heat demand per new residence is set equal to present heat demand of the residences from 2005-present of that type. +# This heat demand per unit is calculated by dividing the preset_demand by the nr. of units. +# Finally the total number of units and useful heat demand are updated for all 4 types. +# +# Priorities of related inputs are set as follows: +# - 4: shares of new residences +# - 3: number of new buildings & number of buildings demolished +# - 2: settings_weather_curve_set (if set, this overrides the outdoor temperature input) +# - 1: insulation sliders +# - 0: behaviour slider & outdoor temperature & households_flexibility_p2p_electricity_market_penetration + +- query = + total_number_of_units_present = QUERY_PRESENT(-> { AREA(present_number_of_residences)}); + number_of_units_demolished = Q(number_of_demolished_residences); + number_of_existing_units_future = total_number_of_units_present - number_of_units_demolished; + number_of_new_units_future = USER_INPUT(); + total_number_of_units_future = number_of_existing_units_future + number_of_new_units_future; + relative_change = DIVIDE(total_number_of_units_future, total_number_of_units_present); + + roof_surface_for_pv_future = PRODUCT(relative_change, QUERY_PRESENT(-> {AREA(residences_roof_surface_available_for_pv)})); + useful_cooling_demand_future = PRODUCT(relative_change, QUERY_PRESENT(-> {V(households_useful_demand_for_cooling, preset_demand)})); + + share_new_apartments = DIVIDE(INPUT_VALUE(households_share_of_apartments), 100.0); + number_new_apartments = PRODUCT(share_new_apartments, number_of_new_units_future); + + total_heat_demand_apartments_2005_present = QUERY_PRESENT(->{V(households_useful_demand_for_space_heating_apartments_2005_present, preset_demand)}); + number_of_apartments_2005_present = QUERY_PRESENT(-> {AREA(present_number_of_apartments_2005_present)}); + heat_demand_per_residence_apartments_2005_present = DIVIDE(total_heat_demand_apartments_2005_present, number_of_apartments_2005_present); + heat_demand_per_residence_apartments_new = heat_demand_per_residence_apartments_2005_present; + total_heat_demand_apartments_new = PRODUCT(number_new_apartments, heat_demand_per_residence_apartments_new); + + share_new_detached = DIVIDE(INPUT_VALUE(households_share_of_detached), 100.0); + number_new_detached = PRODUCT(share_new_detached, number_of_new_units_future); + + total_heat_demand_detached_2005_present = QUERY_PRESENT(->{V(households_useful_demand_for_space_heating_detached_houses_2005_present, preset_demand)}); + number_of_detached_2005_present = QUERY_PRESENT(-> {AREA(present_number_of_detached_houses_2005_present)}); + heat_demand_per_residence_detached_2005_present = DIVIDE(total_heat_demand_detached_2005_present, number_of_detached_2005_present); + heat_demand_per_residence_detached_new = heat_demand_per_residence_detached_2005_present; + total_heat_demand_detached_new = PRODUCT(number_new_detached, heat_demand_per_residence_detached_new); + + share_new_semi_detached = DIVIDE(INPUT_VALUE(households_share_of_semi_detached), 100.0); + number_new_semi_detached = PRODUCT(share_new_semi_detached, number_of_new_units_future); + + total_heat_demand_semi_detached_2005_present = QUERY_PRESENT(->{V(households_useful_demand_for_space_heating_semi_detached_houses_2005_present, preset_demand)}); + number_of_semi_detached_2005_present = QUERY_PRESENT(-> {AREA(present_number_of_semi_detached_houses_2005_present)}); + heat_demand_per_residence_semi_detached_2005_present = DIVIDE(total_heat_demand_semi_detached_2005_present, number_of_semi_detached_2005_present); + heat_demand_per_residence_semi_detached_new = heat_demand_per_residence_semi_detached_2005_present; + total_heat_demand_semi_detached_new = PRODUCT(number_new_semi_detached, heat_demand_per_residence_semi_detached_new); + + share_new_terraced = DIVIDE(INPUT_VALUE(households_share_of_terraced), 100.0); + number_new_terraced = PRODUCT(share_new_terraced, number_of_new_units_future); + + total_heat_demand_terraced_2005_present = QUERY_PRESENT(->{V(households_useful_demand_for_space_heating_terraced_houses_2005_present, preset_demand)}); + number_of_terraced_2005_present = QUERY_PRESENT(-> {AREA(present_number_of_terraced_houses_2005_present)}); + heat_demand_per_residence_terraced_2005_present = DIVIDE(total_heat_demand_terraced_2005_present, number_of_terraced_2005_present); + heat_demand_per_residence_terraced_new = heat_demand_per_residence_terraced_2005_present; + total_heat_demand_terraced_new = PRODUCT(number_new_terraced, heat_demand_per_residence_terraced_new); + + EACH( + UPDATE(V(households_useful_demand_for_hot_water_after_solar_heater), number_of_units, total_number_of_units_future), + UPDATE(AREA(), residences_roof_surface_available_for_pv, roof_surface_for_pv_future), + UPDATE(V(households_useful_demand_for_cooling), preset_demand, useful_cooling_demand_future), + + UPDATE(V(households_useful_demand_for_space_heating_apartments_future), preset_demand, total_heat_demand_apartments_new), + UPDATE(V(households_useful_demand_for_space_heating_apartments_future), number_of_units, number_new_apartments), + + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), preset_demand, total_heat_demand_detached_new), + UPDATE(V(households_useful_demand_for_space_heating_detached_houses_future), number_of_units, number_new_detached), + + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), preset_demand, total_heat_demand_semi_detached_new), + UPDATE(V(households_useful_demand_for_space_heating_semi_detached_houses_future), number_of_units, number_new_semi_detached), + + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), preset_demand, total_heat_demand_terraced_new), + UPDATE(V(households_useful_demand_for_space_heating_terraced_houses_future), number_of_units, number_new_terraced), + ) + +- priority = 3 +- max_value_gql = present:AREA(present_number_of_residences) +- min_value = 0.0 +- start_value = 0.0 +- step_value = 1.0 +- unit = # +- update_period = future diff --git a/inputs/demand/households/households_number/households_number_of_inhabitants.ad b/inputs/demand/households/households_population/households_number_of_inhabitants.ad similarity index 100% rename from inputs/demand/households/households_number/households_number_of_inhabitants.ad rename to inputs/demand/households/households_population/households_number_of_inhabitants.ad diff --git a/inputs/demand/transport/transport_passenger/transport_passenger_train/transport_rail_mixer_diesel_biodiesel_share.ad b/inputs/demand/transport/transport_passenger/transport_passenger_train/transport_rail_mixer_diesel_biodiesel_share.ad deleted file mode 100644 index 79cc6841f1..0000000000 --- a/inputs/demand/transport/transport_passenger/transport_passenger_train/transport_rail_mixer_diesel_biodiesel_share.ad +++ /dev/null @@ -1,9 +0,0 @@ -- query = UPDATE( INPUT_SLOTS(V(transport_rail_mixer_diesel),biodiesel), conversion, DIVIDE(USER_INPUT(),100)) -- share_group = transport_rail_diesel -- priority = 0 -- max_value = 100.0 -- min_value = 0.0 -- start_value_gql = present:V(transport_rail_mixer_diesel,biodiesel_input_conversion) * 100 -- step_value = 0.1 -- unit = % -- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..cf9facdbe7 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(agriculture_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(agriculture_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(agriculture_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_co2.ad new file mode 100644 index 0000000000..96b576d342 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_co2.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(agriculture_non_specified_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(agriculture_non_specified_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(agriculture_non_specified_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..76555fae40 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_agriculture_non_specified_non_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(agriculture_non_specified_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(agriculture_non_specified_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(agriculture_non_specified_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_buildings_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_buildings_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..0292fc996c --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_buildings_non_specified_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(buildings_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(buildings_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(buildings_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_aviation_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_aviation_energetic_other_ghg.ad new file mode 100644 index 0000000000..b51fca1faa --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_aviation_energetic_other_ghg.ad @@ -0,0 +1,32 @@ +# Sets international aviation other GHG emissions +# Value is corrected for share of international transport that should be taken into account +# Priority set to 0 to go after input bunkers_allocated_percentage_aviation +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +# Note that the share from bunkers_allocated_percentage_aviation determines the extent to which +# these emissions show in output. + +- query = + international_share = DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_aviation), 100.0); + + UPDATE( + MV(bunkers_international_aviation_energetic_other_ghg), + preset_demand, + PRODUCT( + PRODUCT(USER_INPUT(), MILLIONS), + international_share + ) + ) + +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(EMISSIONS(bunkers_international_aviation, energetic, other_ghg), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:EMISSIONS(bunkers_international_aviation, energetic, other_ghg) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_navigation_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_navigation_energetic_other_ghg.ad new file mode 100644 index 0000000000..34dc41525a --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_bunkers_international_navigation_energetic_other_ghg.ad @@ -0,0 +1,32 @@ +# Sets international navigation other GHG emissions +# Value is corrected for share of international transport that should be taken into account +# Priority set to 0 to go after input bunkers_allocated_percentage_shipping +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +# Note that the share from bunkers_allocated_percentage_shipping determines the extent to which +# these emissions show in output. + +- query = + international_share = DIVIDE(INPUT_VALUE(bunkers_allocated_percentage_shipping), 100.0); + + UPDATE( + MV(bunkers_international_navigation_energetic_other_ghg), + preset_demand, + PRODUCT( + PRODUCT(USER_INPUT(), MILLIONS), + international_share + ) + ) + +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(EMISSIONS(bunkers_international_navigation, energetic, other_ghg), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:EMISSIONS(bunkers_international_navigation, energetic, other_ghg) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_ccus_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_ccus_non_energetic_co2.ad new file mode 100644 index 0000000000..0e322c5849 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_ccus_non_energetic_co2.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_ccus_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_ccus_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_ccus_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_electricity_and_heat_production_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_electricity_and_heat_production_energetic_other_ghg.ad new file mode 100644 index 0000000000..23332043a9 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_electricity_and_heat_production_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_electricity_and_heat_production_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_electricity_and_heat_production_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_electricity_and_heat_production_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fuels_production_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fuels_production_energetic_other_ghg.ad new file mode 100644 index 0000000000..b9dd5dfd95 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fuels_production_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_fuels_production_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_fuels_production_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_fuels_production_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_co2.ad new file mode 100644 index 0000000000..b479787295 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_co2.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_fugitive_emissions_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_fugitive_emissions_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_fugitive_emissions_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..7a2ba2a3d2 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_fugitive_emissions_non_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_fugitive_emissions_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_fugitive_emissions_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_fugitive_emissions_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_hydrogen_production_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_hydrogen_production_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..c485857707 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_hydrogen_production_non_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_hydrogen_production_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_hydrogen_production_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_hydrogen_production_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_methanol_production_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_methanol_production_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..31353dc378 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_energy_methanol_production_non_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(energy_methanol_production_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(energy_methanol_production_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(energy_methanol_production_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_households_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_households_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..d2bbe786bf --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_households_non_specified_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(households_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(households_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(households_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_co2.ad new file mode 100644 index 0000000000..d70cedf27d --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_aluminium_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_aluminium_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_aluminium_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..8ce98dd6dc --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_aluminium_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_aluminium_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_aluminium_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_aluminium_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_co2.ad new file mode 100644 index 0000000000..3e259f842c --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_chemicals_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_chemicals_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_chemicals_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..0da58e9530 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_chemicals_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_chemicals_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_chemicals_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_chemicals_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_fertilizers_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_fertilizers_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..70a75fdf24 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_fertilizers_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_fertilizers_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_fertilizers_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_fertilizers_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_co2.ad new file mode 100644 index 0000000000..86aec16ed3 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_food_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_food_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_food_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..8e4fecdcf6 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_food_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_food_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_food_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_food_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..b0b9922b17 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_non_specified_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_co2.ad new file mode 100644 index 0000000000..394233c795 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_metals_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_metals_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_metals_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..c0da504213 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_metals_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_metals_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_metals_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_metals_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_co2.ad new file mode 100644 index 0000000000..e59eaabb87 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..59f77b1c94 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_other_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_co2.ad new file mode 100644 index 0000000000..d9e9b8dc8f --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_paper_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_paper_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_paper_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..e76e73afb5 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_paper_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_paper_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_paper_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_paper_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_energetic_other_ghg.ad new file mode 100644 index 0000000000..9b41270d27 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_refineries_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_refineries_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_refineries_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..41072d6ce3 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_refineries_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_refineries_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_refineries_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_refineries_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_co2.ad new file mode 100644 index 0000000000..a9817d6b33 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_steel_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_steel_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_steel_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..45bf68e82a --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_industry_steel_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_steel_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_steel_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_steel_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_industry] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_co2.ad new file mode 100644 index 0000000000..23decf3789 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_co2.ad @@ -0,0 +1,81 @@ +# Sets LULUCF emissions and removals molecule nodes +# - If positive, lulucf_emissions_non_energetic_co2 is updated with the user value and +# lulucf_removals_non_energetic_co2 is set to zero. +# - If negative, lulucf_emissions_non_energetic_co2 is set to zero and +# lulucf_removals_non_energetic_co2 is updated with the (positive) user value +# +# Note: the asymmetric use of GREATER_OR_EQUAL in the query and GREATER in the start_value_gql is +# intentional. GREATER_OR_EQUAL ensures that if the user value is 0, LULUCF removals are not set to +# -0. GREATER is used in the start_value_gql to ensure when emissions are zero, the demand +# of the removals node is used. + +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value +# The min value is set in the same way, but then negative + +- query = + IF( + GREATER_OR_EQUAL(USER_INPUT(), 0.0), + -> { + EACH( + UPDATE( + MV(lulucf_emissions_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ), + UPDATE( + MV(lulucf_removals_non_energetic_co2), + preset_demand, + 0.0 + ) + ) + }, + -> { + EACH( + UPDATE( + MV(lulucf_emissions_non_energetic_co2), + preset_demand, + 0.0 + ), + UPDATE( + MV(lulucf_removals_non_energetic_co2), + preset_demand, + NEG(PRODUCT((USER_INPUT()), MILLIONS)) + ) + ) + } + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT( + MAX( + DIVIDE(MV(lulucf_emissions_non_energetic_co2, demand), MILLIONS), + DIVIDE(MV(lulucf_removals_non_energetic_co2, demand), MILLIONS) + ), + 1.5 + ) + ) +- min_value_gql = + present:NEG( + MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT( + MAX( + DIVIDE(MV(lulucf_emissions_non_energetic_co2, demand), MILLIONS), + DIVIDE(MV(lulucf_removals_non_energetic_co2, demand), MILLIONS) + ), + 1.5 + ) + ) + ) +- start_value_gql = + present:IF( + GREATER(MV(lulucf_emissions_non_energetic_co2, demand), 0.0), + -> { DIVIDE(MV(lulucf_emissions_non_energetic_co2, demand), MILLIONS) }, + -> { DIVIDE(NEG(MV(lulucf_removals_non_energetic_co2, demand)), MILLIONS) } + ) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..b55305d7ea --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_lulucf_non_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(lulucf_emissions_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(lulucf_emissions_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(lulucf_emissions_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_indirect_emissions_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_indirect_emissions_non_energetic_co2.ad new file mode 100644 index 0000000000..4ec86dae05 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_indirect_emissions_non_energetic_co2.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(other_indirect_emissions_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(other_indirect_emissions_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(other_indirect_emissions_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..756167e5a5 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_non_specified_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(other_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(other_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(other_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_other_transportation_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_other_transportation_energetic_other_ghg.ad new file mode 100644 index 0000000000..7688fefffa --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_other_other_transportation_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(other_other_transportation_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(other_other_transportation_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(other_other_transportation_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_transport_non_specified_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_transport_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..a090c760bf --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_transport_non_specified_energetic_other_ghg.ad @@ -0,0 +1,20 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(transport_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(transport_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(transport_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_co2.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_co2.ad new file mode 100644 index 0000000000..2699d974c3 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(waste_non_specified_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(waste_non_specified_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(waste_non_specified_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_waste] diff --git a/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_other_ghg.ad b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..b783e7dfc5 --- /dev/null +++ b/inputs/emissions/greenhouse_gases/direct_emissions/emissions_waste_non_specified_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(waste_non_specified_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(waste_non_specified_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(waste_non_specified_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- disabled_by_couplings = [external_model_industry, emissions_waste] diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_agriculture.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_agriculture.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_agriculture.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_agriculture.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_buildings.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_buildings.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_buildings.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_buildings.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_energy.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_energy.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_energy.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_energy.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_households.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_households.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_households.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_households.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_industry.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_industry.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_industry.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_industry.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_transport.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_transport.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_energetic_emissions_other_ghg_transport.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_energetic_emissions_other_ghg_transport.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_agriculture_manure.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_agriculture_manure.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_agriculture_manure.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_agriculture_manure.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_agriculture_soil_cultivation.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_agriculture_soil_cultivation.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_agriculture_soil_cultivation.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_agriculture_soil_cultivation.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_chemical_industry.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_chemical_industry.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_chemical_industry.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_chemical_industry.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_other_industry.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_other_industry.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_other_industry.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_other_industry.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_waste_management.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_waste_management.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_co2_waste_management.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_co2_waste_management.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_fermentation.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_fermentation.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_fermentation.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_fermentation.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_manure.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_manure.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_manure.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_manure.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_other.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_other.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_other.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_other.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_soil_cultivation.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_soil_cultivation.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_agriculture_soil_cultivation.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_agriculture_soil_cultivation.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_chemical_industry.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_chemical_industry.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_chemical_industry.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_chemical_industry.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_other_industry.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_other_industry.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_other_industry.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_other_industry.ad diff --git a/inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_waste_management.ad b/inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_waste_management.ad similarity index 100% rename from inputs/emissions/greenhouse_gases/change_in_non_energetic_emissions_other_ghg_waste_management.ad rename to inputs/emissions/greenhouse_gases/primary_emissions/change_in_non_energetic_emissions_other_ghg_waste_management.ad diff --git a/inputs/flexibility/households/households_flexibility_p2p_electricity_market_penetration.ad b/inputs/flexibility/households/households_flexibility_p2p_electricity_market_penetration.ad index 134a2c6f7d..fbf628a6cb 100644 --- a/inputs/flexibility/households/households_flexibility_p2p_electricity_market_penetration.ad +++ b/inputs/flexibility/households/households_flexibility_p2p_electricity_market_penetration.ad @@ -1,7 +1,15 @@ - query = - UPDATE( - V(households_flexibility_p2p_electricity), number_of_units, (USER_INPUT() / 100.0) * QUERY_FUTURE(-> { Q(number_of_residences) }) - ) + number_of_residences_start_year = QUERY_PRESENT(-> { AREA(present_number_of_residences) }); + number_of_residences_demolished = QUERY_FUTURE(number_of_demolished_residences); + number_of_residences_built = INPUT_VALUE(households_number_of_residences_new); + number_of_residences_future_year = number_of_residences_start_year + number_of_residences_built - number_of_residences_demolished; + + UPDATE( + V(households_flexibility_p2p_electricity), + number_of_units, + (USER_INPUT() / 100.0) * number_of_residences_future_year + ) + - priority = 0 - max_value = 100.0 - min_value = 0.0 diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_co2.ad new file mode 100644 index 0000000000..55047db7eb --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_aluminium_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_aluminium_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_aluminium_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..ad151ea85c --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_aluminium_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_aluminium_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_aluminium_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_aluminium_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_co2.ad new file mode 100644 index 0000000000..08df4ed0a4 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_chemicals_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_chemicals_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_chemicals_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..a7a6b8051e --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_chemicals_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_chemicals_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_chemicals_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_chemicals_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_fertilizers_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_fertilizers_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..b4b94004ee --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_fertilizers_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_fertilizers_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_fertilizers_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_fertilizers_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_co2.ad new file mode 100644 index 0000000000..4e588c7167 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_food_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_food_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_food_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..f8d89dd1c3 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_food_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_food_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_food_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_food_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_non_specified_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_non_specified_energetic_other_ghg.ad new file mode 100644 index 0000000000..38d6a30b3a --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_non_specified_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_non_specified_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_non_specified_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_non_specified_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_co2.ad new file mode 100644 index 0000000000..35263c66b7 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_metals_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_metals_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_metals_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..8aa4777d36 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_metals_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_metals_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_metals_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_metals_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_co2.ad new file mode 100644 index 0000000000..65f370aa75 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..2ca95b6a63 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_other_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_other_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_other_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_other_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_co2.ad new file mode 100644 index 0000000000..b25b3b0ec2 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_paper_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_paper_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_paper_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..0f020c9cd2 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_paper_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_paper_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_paper_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_paper_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_energetic_other_ghg.ad new file mode 100644 index 0000000000..86a5d3c3c3 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_refineries_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_refineries_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_refineries_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..f9eb815513 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_refineries_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_refineries_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_refineries_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_refineries_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_co2.ad new file mode 100644 index 0000000000..74a20d3fef --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_steel_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_steel_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_steel_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..1d378c240e --- /dev/null +++ b/inputs/modules/external_coupling/emissions_industry/external_coupling_emissions_industry_steel_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(industry_steel_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(industry_steel_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(industry_steel_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_industry] diff --git a/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_co2.ad b/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_co2.ad new file mode 100644 index 0000000000..b2274ed8a5 --- /dev/null +++ b/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_co2.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(waste_non_specified_non_energetic_co2), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(waste_non_specified_non_energetic_co2, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(waste_non_specified_non_energetic_co2, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_waste] diff --git a/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_other_ghg.ad b/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_other_ghg.ad new file mode 100644 index 0000000000..5bb629943a --- /dev/null +++ b/inputs/modules/external_coupling/emissions_waste/external_coupling_emissions_waste_non_specified_non_energetic_other_ghg.ad @@ -0,0 +1,21 @@ +# Max value is the larger of a fraction of the total GHG emissions and a factor of the start value +# This ensures that the max value never falls below the start value + +- query = + UPDATE( + MV(waste_non_specified_non_energetic_other_ghg), + preset_demand, + PRODUCT(USER_INPUT(), MILLIONS) + ) +- priority = 0 +- max_value_gql = + present:MAX( + Q(max_value_dataset_derived_direct_emissions), + PRODUCT(DIVIDE(MV(waste_non_specified_non_energetic_other_ghg, demand), MILLIONS), 1.5) + ) +- min_value = 0.0 +- start_value_gql = present:DIVIDE(MV(waste_non_specified_non_energetic_other_ghg, demand), MILLIONS) +- step_value = 0.1 +- unit = kT +- update_period = future +- coupling_groups = [external_model_industry, emissions_waste] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_bio_ethanol_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_bio_ethanol_output_share.ad new file mode 100644 index 0000000000..1b66d91bc4 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_bio_ethanol_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_bio_ethanol), bio_ethanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol, bio_ethanol_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_loss_output_share.ad new file mode 100644 index 0000000000..54b4dd2df2 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_bio_ethanol), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_network_gas_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_network_gas_input_share.ad new file mode 100644 index 0000000000..3b123f167e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_network_gas_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_bio_ethanol), network_gas), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol, network_gas_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_wet_biomass_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_wet_biomass_input_share.ad new file mode 100644 index 0000000000..0fbc97aacb --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_production/external_coupling_bio_ethanol_wet_biomass_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_bio_ethanol), wet_biomass), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol, wet_biomass_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_ethanol_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_ethanol_input_share.ad new file mode 100644 index 0000000000..fbb0c9e174 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_ethanol_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_bio_ethanol_to_jet), bio_ethanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol_to_jet, bio_ethanol_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..90c39a059f --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_bio_ethanol_to_jet), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol_to_jet, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_biodiesel_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_biodiesel_output_share.ad new file mode 100644 index 0000000000..1d4cf362ad --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_biodiesel_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_bio_ethanol_to_jet), biodiesel), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol_to_jet, biodiesel_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_hydrogen_input_share.ad new file mode 100644 index 0000000000..1fd19d2d45 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_bio_ethanol_to_jet), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol_to_jet, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_loss_output_share.ad new file mode 100644 index 0000000000..4aa5db94ce --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/bio_ethanol_to_jet/external_coupling_bio_ethanol_to_jet_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_bio_ethanol_to_jet), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_bio_ethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_bio_ethanol_to_jet, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..b73d845f48 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_biogenic_waste_ccs), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_biogenic_waste_ccs, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_biodiesel_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_biodiesel_output_share.ad new file mode 100644 index 0000000000..1d138f7bc4 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_biodiesel_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_biogenic_waste_ccs), biodiesel), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_biogenic_waste_ccs, biodiesel_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bionaphtha_output_share.ad new file mode 100644 index 0000000000..c522def787 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_biogenic_waste_ccs), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_biogenic_waste_ccs, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_loss_output_share.ad new file mode 100644 index 0000000000..b2231615b5 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_biogenic_waste_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_biogenic_waste_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_biogenic_waste_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..e945236777 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_dry_biomass_ccs), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_dry_biomass_ccs, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_biodiesel_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_biodiesel_output_share.ad new file mode 100644 index 0000000000..134dfa0359 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_biodiesel_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_dry_biomass_ccs), biodiesel), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_dry_biomass_ccs, biodiesel_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bionaphtha_output_share.ad new file mode 100644 index 0000000000..b960ba2735 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_dry_biomass_ccs), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_dry_biomass_ccs, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_loss_output_share.ad new file mode 100644 index 0000000000..9402a55e7e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_dry_biomass_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_dry_biomass_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_dry_biomass_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_diesel_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_diesel_output_share.ad new file mode 100644 index 0000000000..f1f54d8e02 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_diesel_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_non_biogenic_waste_ccs), diesel), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_non_biogenic_waste_ccs, diesel_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_kerosene_output_share.ad new file mode 100644 index 0000000000..beda148cf9 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_non_biogenic_waste_ccs), kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_non_biogenic_waste_ccs, kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_loss_output_share.ad new file mode 100644 index 0000000000..5cea96933e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_non_biogenic_waste_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_non_biogenic_waste_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_naphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_naphtha_output_share.ad new file mode 100644 index 0000000000..eda2d5895c --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_non_biogenic_waste_ccs_naphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_non_biogenic_waste_ccs), naphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_non_biogenic_waste_ccs, naphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_electricity_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_electricity_input_share.ad new file mode 100644 index 0000000000..124a431766 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_electricity_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_dispatchable), electricity), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_dispatchable_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_dispatchable, electricity_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_gasoline_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_gasoline_output_share.ad new file mode 100644 index 0000000000..7681b0bf5f --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_gasoline_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_dispatchable), gasoline), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_dispatchable_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_dispatchable, gasoline_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_hydrogen_input_share.ad new file mode 100644 index 0000000000..bb8def97d7 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_dispatchable), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_dispatchable_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_dispatchable, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_kerosene_output_share.ad new file mode 100644 index 0000000000..070622c430 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_dispatchable), kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_dispatchable_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_dispatchable, kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_loss_output_share.ad new file mode 100644 index 0000000000..2115764699 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_dispatchable_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_dispatchable), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_dispatchable_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_dispatchable, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_electricity_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_electricity_input_share.ad new file mode 100644 index 0000000000..12b48d92bd --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_electricity_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_must_run), electricity), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_must_run_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_must_run, electricity_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_gasoline_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_gasoline_output_share.ad new file mode 100644 index 0000000000..7c5cccdbd6 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_gasoline_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_must_run), gasoline), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_must_run_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_must_run, gasoline_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_hydrogen_input_share.ad new file mode 100644 index 0000000000..97b00aacfe --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_must_run), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_must_run_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_must_run, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_kerosene_output_share.ad new file mode 100644 index 0000000000..1ba92d5c04 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_must_run), kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_must_run_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_must_run, kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_loss_output_share.ad new file mode 100644 index 0000000000..c415e7d401 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/fischer_tropsch/external_coupling_fischer_tropsch_synthetic_must_run_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fischer_tropsch_synthetic_must_run), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fischer_tropsch_synthetic_must_run_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fischer_tropsch_synthetic_must_run, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..c6b1d35066 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_bio_kerosene), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bionaphtha_output_share.ad new file mode 100644 index 0000000000..3f88ccd715 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_bio_kerosene), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_hydrogen_input_share.ad new file mode 100644 index 0000000000..f819e1b1a0 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_hvo_bio_kerosene), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_loss_output_share.ad new file mode 100644 index 0000000000..8056ee1e65 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_bio_kerosene), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_network_gas_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_network_gas_input_share.ad new file mode 100644 index 0000000000..6cd52c2521 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_network_gas_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_hvo_bio_kerosene), network_gas), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, network_gas_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_oily_biomass_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_oily_biomass_input_share.ad new file mode 100644 index 0000000000..905952e939 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_bio_kerosene_oily_biomass_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_hvo_bio_kerosene), oily_biomass), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_bio_kerosene_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_bio_kerosene, oily_biomass_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_biodiesel_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_biodiesel_output_share.ad new file mode 100644 index 0000000000..627e4a5b1e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_biodiesel_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_biodiesel), biodiesel), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_biodiesel_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_biodiesel, biodiesel_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_bionaphtha_output_share.ad new file mode 100644 index 0000000000..3ded6b3845 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_biodiesel), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_biodiesel_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_biodiesel, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_hydrogen_input_share.ad new file mode 100644 index 0000000000..e50da94987 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_hvo_biodiesel), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_biodiesel_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_biodiesel, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_loss_output_share.ad new file mode 100644 index 0000000000..2cea6fcc64 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_hvo_biodiesel), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_biodiesel_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_biodiesel, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_oily_biomass_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_oily_biomass_input_share.ad new file mode 100644 index 0000000000..582486398f --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/hydrotreatment/external_coupling_hvo_biodiesel_oily_biomass_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_hvo_biodiesel), oily_biomass), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_hvo_biodiesel_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_hvo_biodiesel, oily_biomass_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_biomethanol_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_biomethanol_output_share.ad new file mode 100644 index 0000000000..3ae6dbad67 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_biomethanol_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_biogenic_waste_ccs), biomethanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_biogenic_waste_ccs, biomethanol_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_loss_output_share.ad new file mode 100644 index 0000000000..db9cbe515a --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_biogenic_waste_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_biogenic_waste_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_biogenic_waste_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_biomethanol_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_biomethanol_output_share.ad new file mode 100644 index 0000000000..c8acbb0b2d --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_biomethanol_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_dry_biomass_ccs), biomethanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_dry_biomass_ccs, biomethanol_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_loss_output_share.ad new file mode 100644 index 0000000000..47978fd2f9 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_dry_biomass_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_dry_biomass_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_dry_biomass_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_dry_biomass_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_loss_output_share.ad new file mode 100644 index 0000000000..1220890b36 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_non_biogenic_waste_ccs), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_non_biogenic_waste_ccs, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_methanol_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_methanol_output_share.ad new file mode 100644 index 0000000000..faaa61aca0 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_non_biogenic_waste_ccs_methanol_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_non_biogenic_waste_ccs), methanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_non_biogenic_waste_ccs_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_non_biogenic_waste_ccs, methanol_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_electricity_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_electricity_input_share.ad new file mode 100644 index 0000000000..adad858424 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_electricity_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_methanol_synthesis_synthetic), electricity), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_synthetic_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_synthetic, electricity_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_hydrogen_input_share.ad new file mode 100644 index 0000000000..6df1934c5e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_methanol_synthesis_synthetic), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_synthetic_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_synthetic, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_loss_output_share.ad new file mode 100644 index 0000000000..a9e717d7cc --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_synthetic), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_synthetic_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_synthetic, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_methanol_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_methanol_output_share.ad new file mode 100644 index 0000000000..d3436f1ca5 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_synthesis/external_coupling_methanol_synthesis_synthetic_methanol_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_synthesis_synthetic), methanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_synthesis_synthetic_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_synthesis_synthetic, methanol_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..017e01c936 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_biomethanol_to_jet), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_biomethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_biomethanol_to_jet, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_biomethanol_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_biomethanol_input_share.ad new file mode 100644 index 0000000000..adda2d332b --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_biomethanol_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_biomethanol_to_jet), biomethanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_biomethanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_biomethanol_to_jet, biomethanol_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bionaphtha_output_share.ad new file mode 100644 index 0000000000..f951e65971 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_biomethanol_to_jet), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_biomethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_biomethanol_to_jet, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_hydrogen_input_share.ad new file mode 100644 index 0000000000..3f4b9a2786 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_biomethanol_to_jet), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_biomethanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_biomethanol_to_jet, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_loss_output_share.ad new file mode 100644 index 0000000000..76543f039c --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_biomethanol_to_jet_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_biomethanol_to_jet), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_biomethanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_biomethanol_to_jet, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_hydrogen_input_share.ad new file mode 100644 index 0000000000..2de0236b4f --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_methanol_to_jet), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_to_jet, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_kerosene_output_share.ad new file mode 100644 index 0000000000..0792a57524 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_to_jet), kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_to_jet, kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_loss_output_share.ad new file mode 100644 index 0000000000..b75f6c41b0 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_to_jet), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_to_jet, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_methanol_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_methanol_input_share.ad new file mode 100644 index 0000000000..02d984c11d --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_methanol_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_methanol_to_jet), methanol), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_to_jet_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_to_jet, methanol_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_naphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_naphtha_output_share.ad new file mode 100644 index 0000000000..7ccfe5c958 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/methanol_to_jet/external_coupling_methanol_to_jet_naphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_methanol_to_jet), naphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_methanol_to_jet_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_methanol_to_jet, naphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_kerosene_output_share.ad new file mode 100644 index 0000000000..8290144c29 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), bio_kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, bio_kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_pyrolysis_oil_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_pyrolysis_oil_input_share.ad new file mode 100644 index 0000000000..2c9f8e3447 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bio_pyrolysis_oil_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), bio_pyrolysis_oil), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, bio_pyrolysis_oil_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bionaphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bionaphtha_output_share.ad new file mode 100644 index 0000000000..d7fe682daa --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_bionaphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), bionaphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, bionaphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_hydrogen_input_share.ad new file mode 100644 index 0000000000..be8e77b637 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_loss_output_share.ad new file mode 100644 index 0000000000..80be95ff44 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_steam_hot_water_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_steam_hot_water_input_share.ad new file mode 100644 index 0000000000..72cbdb7b1e --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_bio_pyrolysis_oil_steam_hot_water_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_bio_pyrolysis_oil), steam_hot_water), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_bio_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_bio_pyrolysis_oil, steam_hot_water_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_hydrogen_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_hydrogen_input_share.ad new file mode 100644 index 0000000000..fbc03937f1 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_hydrogen_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), hydrogen), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, hydrogen_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_kerosene_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_kerosene_output_share.ad new file mode 100644 index 0000000000..1c4b251488 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_kerosene_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), kerosene), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, kerosene_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_loss_output_share.ad new file mode 100644 index 0000000000..a9171b18d0 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_naphtha_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_naphtha_output_share.ad new file mode 100644 index 0000000000..89de281d82 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_naphtha_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), naphtha), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, naphtha_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_pyrolysis_oil_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_pyrolysis_oil_input_share.ad new file mode 100644 index 0000000000..2dae6bf6c5 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_pyrolysis_oil_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), pyrolysis_oil), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, pyrolysis_oil_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_steam_hot_water_input_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_steam_hot_water_input_share.ad new file mode 100644 index 0000000000..7f080291f2 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_fractionation/external_coupling_fractionation_pyrolysis_oil_steam_hot_water_input_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(INPUT_SLOTS(V(energy_production_fractionation_pyrolysis_oil), steam_hot_water), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_fractionation_pyrolysis_oil_input +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_fractionation_pyrolysis_oil, steam_hot_water_input_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_bio_pyrolysis_oil_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_bio_pyrolysis_oil_output_share.ad new file mode 100644 index 0000000000..f61f9a8b29 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_bio_pyrolysis_oil_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_biogenic_waste), bio_pyrolysis_oil), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_biogenic_waste, bio_pyrolysis_oil_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_loss_output_share.ad new file mode 100644 index 0000000000..8b34447eb6 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_biogenic_waste), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_biogenic_waste, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_steam_hot_water_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_steam_hot_water_output_share.ad new file mode 100644 index 0000000000..f98c9b73f9 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_biogenic_waste_steam_hot_water_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_biogenic_waste), steam_hot_water), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_biogenic_waste, steam_hot_water_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_bio_pyrolysis_oil_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_bio_pyrolysis_oil_output_share.ad new file mode 100644 index 0000000000..59b03311e9 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_bio_pyrolysis_oil_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_dry_biomass), bio_pyrolysis_oil), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_dry_biomass_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_dry_biomass, bio_pyrolysis_oil_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_loss_output_share.ad new file mode 100644 index 0000000000..90ee341a5f --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_dry_biomass), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_dry_biomass_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_dry_biomass, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_steam_hot_water_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_steam_hot_water_output_share.ad new file mode 100644 index 0000000000..81eee607a3 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_dry_biomass_steam_hot_water_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_dry_biomass), steam_hot_water), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_dry_biomass_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_dry_biomass, steam_hot_water_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_loss_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_loss_output_share.ad new file mode 100644 index 0000000000..0dac55d85a --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_loss_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_non_biogenic_waste), loss), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_non_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_non_biogenic_waste, loss_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_pyrolysis_oil_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_pyrolysis_oil_output_share.ad new file mode 100644 index 0000000000..11a335af7b --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_pyrolysis_oil_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_non_biogenic_waste), pyrolysis_oil), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_non_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_non_biogenic_waste, pyrolysis_oil_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_steam_hot_water_output_share.ad b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_steam_hot_water_output_share.ad new file mode 100644 index 0000000000..f7b4cbbe40 --- /dev/null +++ b/inputs/modules/external_coupling/liquid_fuels/pyrolysis_production/external_coupling_pyrolysis_non_biogenic_waste_steam_hot_water_output_share.ad @@ -0,0 +1,12 @@ +# Priority is set at 2 to go before the regular liquid fuels inputs + +- query = UPDATE(OUTPUT_SLOTS(V(energy_production_pyrolysis_non_biogenic_waste), steam_hot_water), conversion, DIVIDE(USER_INPUT(),100.0)) +- share_group = energy_production_pyrolysis_non_biogenic_waste_output +- priority = 2 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = present:V(energy_production_pyrolysis_non_biogenic_waste, steam_hot_water_output_conversion) * 100.0 +- step_value = 0.1 +- unit = % +- update_period = future +- coupling_groups = [external_model_liquid_fuels] diff --git a/inputs/supply/electricity/gas_plants/capacity_of_energy_chp_combined_cycle_hydrogen.ad b/inputs/supply/electricity/gas_plants/capacity_of_energy_chp_combined_cycle_hydrogen.ad new file mode 100644 index 0000000000..0aa3146ee3 --- /dev/null +++ b/inputs/supply/electricity/gas_plants/capacity_of_energy_chp_combined_cycle_hydrogen.ad @@ -0,0 +1,34 @@ +- query = + EACH( + UPDATE( + V(energy_chp_combined_cycle_mt_hydrogen), + number_of_units, + DIVIDE(INPUT_VALUE(share_of_energy_chp_combined_cycle_mt_hydrogen),100.0) * USER_INPUT() / V(energy_chp_combined_cycle_mt_hydrogen, electricity_output_capacity) + ), + UPDATE( + L(energy_chp_combined_cycle_mt_hydrogen), + preset_demand_by_electricity_production, + V(energy_chp_combined_cycle_mt_hydrogen, production_based_on_number_of_units) + ), + UPDATE( + V(energy_chp_combined_cycle_ht_hydrogen), + number_of_units, + DIVIDE(INPUT_VALUE(share_of_energy_chp_combined_cycle_ht_hydrogen),100.0) * USER_INPUT() / V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_capacity) + ), + UPDATE( + L(energy_chp_combined_cycle_ht_hydrogen), + preset_demand_by_electricity_production, + V(energy_chp_combined_cycle_ht_hydrogen, production_based_on_number_of_units) + ) + ) +- priority = 0 +- max_value_gql = present:MAX(10000,2*DIVIDE(DIVIDE(Q(total_electricity_consumed), V(energy_chp_combined_cycle_ht_hydrogen,full_load_hours)), MJ_PER_MWH)) +- min_value = 0.0 +- start_value_gql = + present:SUM( + V(energy_chp_combined_cycle_mt_hydrogen, "number_of_units * electricity_output_capacity"), + V(energy_chp_combined_cycle_ht_hydrogen, "number_of_units * electricity_output_capacity") + ) +- step_value = 1.0 +- unit = MW +- update_period = future diff --git a/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_ht_hydrogen.ad b/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_ht_hydrogen.ad new file mode 100644 index 0000000000..c8a69c99c5 --- /dev/null +++ b/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_ht_hydrogen.ad @@ -0,0 +1,34 @@ +- query = + EACH( + UPDATE( + V(energy_chp_combined_cycle_ht_hydrogen), + number_of_units, + DIVIDE(USER_INPUT(),100.0) * INPUT_VALUE(capacity_of_energy_chp_combined_cycle_hydrogen) / V(energy_chp_combined_cycle_ht_hydrogen, electricity_output_capacity) + ), + UPDATE( + L(energy_chp_combined_cycle_ht_hydrogen), + preset_demand_by_electricity_production, + V(energy_chp_combined_cycle_ht_hydrogen, production_based_on_number_of_units) + ) + ) + +- share_group = chp_cc_hydrogen_heat +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = + present:PRODUCT( + (1 - + DIVIDE( + V(energy_chp_combined_cycle_mt_hydrogen,"number_of_units * electricity_output_capacity"), + SUM( + V(energy_chp_combined_cycle_mt_hydrogen,"number_of_units * electricity_output_capacity"), + V(energy_chp_combined_cycle_ht_hydrogen,"number_of_units * electricity_output_capacity") + ) + ) + ), + 100.0 + ) +- step_value = 1.0 +- unit = % +- update_period = future diff --git a/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_mt_hydrogen.ad b/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_mt_hydrogen.ad new file mode 100644 index 0000000000..50103a2c75 --- /dev/null +++ b/inputs/supply/heat/energy/overview/chps/share_of_energy_chp_combined_cycle_mt_hydrogen.ad @@ -0,0 +1,32 @@ +- query = + EACH( + UPDATE( + V(energy_chp_combined_cycle_mt_hydrogen), + number_of_units, + DIVIDE(USER_INPUT(),100.0) * INPUT_VALUE(capacity_of_energy_chp_combined_cycle_hydrogen) / V(energy_chp_combined_cycle_mt_hydrogen, electricity_output_capacity) + ), + UPDATE( + L(energy_chp_combined_cycle_mt_hydrogen), + preset_demand_by_electricity_production, + V(energy_chp_combined_cycle_mt_hydrogen, production_based_on_number_of_units) + ) + ) + +- share_group = chp_cc_hydrogen_heat +- priority = 1 +- max_value = 100.0 +- min_value = 0.0 +- start_value_gql = + present:PRODUCT( + DIVIDE( + V(energy_chp_combined_cycle_mt_hydrogen,"number_of_units * electricity_output_capacity"), + SUM( + V(energy_chp_combined_cycle_ht_hydrogen,"number_of_units * electricity_output_capacity"), + V(energy_chp_combined_cycle_mt_hydrogen,"number_of_units * electricity_output_capacity") + ) + ), + 100.0 + ) +- step_value = 1.0 +- unit = % +- update_period = future diff --git a/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_ht_hydrogen+output.ad b/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_ht_hydrogen+output.ad new file mode 100644 index 0000000000..bc2485921d --- /dev/null +++ b/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_ht_hydrogen+output.ad @@ -0,0 +1,7 @@ +# Assumed the same electricity and heat efficiency as network gas variant + +- query = + { + steam_hot_water: DIVIDE(DATASET_INPUT(input_energy_chp_combined_cycle_network_gas_steam_hot_water_output_conversion), 100.0), + electricity: DIVIDE(DATASET_INPUT(input_energy_chp_combined_cycle_network_gas_electricity_output_conversion), 100.0) + } diff --git a/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_mt_hydrogen+output.ad b/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_mt_hydrogen+output.ad new file mode 100644 index 0000000000..bc2485921d --- /dev/null +++ b/sparse_graph_queries/energy/electricity_production/energy_chp_combined_cycle_mt_hydrogen+output.ad @@ -0,0 +1,7 @@ +# Assumed the same electricity and heat efficiency as network gas variant + +- query = + { + steam_hot_water: DIVIDE(DATASET_INPUT(input_energy_chp_combined_cycle_network_gas_steam_hot_water_output_conversion), 100.0), + electricity: DIVIDE(DATASET_INPUT(input_energy_chp_combined_cycle_network_gas_electricity_output_conversion), 100.0) + } diff --git a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity+parent_share.ad b/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity+parent_share.ad deleted file mode 100644 index 0c113cb0b7..0000000000 --- a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_heatpump_air_water_electricity@electricity+parent_share.ad +++ /dev/null @@ -1,4 +0,0 @@ -# technology shares space heating are also used for hot water - -- query = - DATASET_INPUT(households_final_demand_for_space_heating_electricity_households_space_heater_heatpump_air_water_electricity_parent_share) diff --git a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity+parent_share.ad b/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity+parent_share.ad deleted file mode 100644 index 0d993b80a6..0000000000 --- a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity+parent_share.ad +++ /dev/null @@ -1,4 +0,0 @@ -# technology shares space heating are also used for hot water - -- query = - DATASET_INPUT(households_final_demand_for_space_heating_electricity_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share) diff --git a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity+parent_share.ad b/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity+parent_share.ad deleted file mode 100644 index 3a3c18835d..0000000000 --- a/sparse_graph_queries/households/households_final_demand_for_hot_water_electricity-households_water_heater_resistive_electricity@electricity+parent_share.ad +++ /dev/null @@ -1,4 +0,0 @@ -# technology shares space heating are also used for hot water - -- query = - DATASET_INPUT(households_final_demand_for_space_heating_electricity_households_space_heater_electricity_parent_share) diff --git a/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas+parent_share.ad b/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas+parent_share.ad deleted file mode 100644 index 038e563bec..0000000000 --- a/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_combined_network_gas@network_gas+parent_share.ad +++ /dev/null @@ -1,4 +0,0 @@ -# technology shares space heating are also used for hot water - -- query = - DATASET_INPUT(households_final_demand_for_space_heating_network_gas_households_space_heater_combined_network_gas_parent_share) diff --git a/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas+parent_share.ad b/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas+parent_share.ad deleted file mode 100644 index 56c005cdac..0000000000 --- a/sparse_graph_queries/households/households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas+parent_share.ad +++ /dev/null @@ -1,4 +0,0 @@ -# technology shares space heating are also used for hot water - -- query = - DATASET_INPUT(households_final_demand_for_space_heating_network_gas_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share) diff --git a/sparse_graph_queries/households/households_space_heater_hybrid_heatpump_air_water_electricity+input.ad b/sparse_graph_queries/households/households_space_heater_hybrid_heatpump_air_water_electricity+input.ad index 00f919fc24..a799cc3a4f 100644 --- a/sparse_graph_queries/households/households_space_heater_hybrid_heatpump_air_water_electricity+input.ad +++ b/sparse_graph_queries/households/households_space_heater_hybrid_heatpump_air_water_electricity+input.ad @@ -1,23 +1,45 @@ -# this query ensures that the hybrid heat pump input slot shares for electricity, gas and ambient heat are set in the right proportion (i.e. in accordance with the electricity and gas going into the node as specified by the user) -# first, the electricity going to HHPs is calculated (elec_tj) -# secondly, the ambient accompanying this electricity is calculated (by calculating the ratio between electricity and ambient in the HHP node) -# thirdly, the gas going to HHPs is calculated (gas_tj) -# this gives the total demand of the HHP node -# finally, the input slot shares for electricity, gas and ambient_heat are set using their respective share in the total demand of the HHP node -# if total_heat is zero (i.e. there are no HHPs in the start year) the input slots shares are set equal to the default node values +# This query sets the input efficiencies of electricity, network_gas and ambient_heat. +# If the electricity input of the HHP in the default node values (i.e. parent dataset) is higher +# than 0.0, the ambient heat demand (ambient_tj) is determined based on the share of ambient required +# per unit of electricity input. +# If the electricity input is zero, the ambient heat demand (ambient_tj) is determined based on the +# share of ambient required per unit of network gas input. +# The input slot shares are set using their respective share in the total demand of the HHP node. +# If total_heat is zero, the input slots shares are set equal to the default node values. - query = - elec_tj = DATASET_INPUT(households_final_demand_electricity_demand) * DATASET_INPUT(households_final_demand_electricity_households_final_demand_for_space_heating_electricity_parent_share) * DATASET_INPUT(households_final_demand_for_space_heating_electricity_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share); - ambient_relative_to_elec = NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat) / NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, electricity); - ambient_tj = elec_tj * ambient_relative_to_elec; - gas_tj = DATASET_INPUT(households_final_demand_network_gas_demand) * DATASET_INPUT(households_final_demand_network_gas_households_final_demand_for_space_heating_network_gas_parent_share) * DATASET_INPUT(households_final_demand_for_space_heating_network_gas_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share); + elec_tj = + PRODUCT( + DATASET_INPUT(households_final_demand_electricity_demand), + DATASET_INPUT(households_final_demand_electricity_households_final_demand_for_space_heating_electricity_parent_share), + DATASET_INPUT(households_final_demand_for_space_heating_electricity_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share) + ); + gas_tj = + PRODUCT( + DATASET_INPUT(households_final_demand_network_gas_demand), + DATASET_INPUT(households_final_demand_network_gas_households_final_demand_for_space_heating_network_gas_parent_share), + DATASET_INPUT(households_final_demand_for_space_heating_network_gas_households_space_heater_hybrid_heatpump_air_water_electricity_parent_share) + ); + + ambient_tj = + IF( + NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, electricity) > 0.0, + -> { elec_tj * DIVIDE(NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat), NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, electricity)) }, + -> { gas_tj * DIVIDE(NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat), NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, network_gas)) }, + ); + total_heat = elec_tj + ambient_tj + gas_tj; - IF(total_heat > 0.0, { + IF( + total_heat > 0.0, + { electricity: elec_tj / total_heat, network_gas: gas_tj / total_heat, - ambient_heat: ambient_tj / total_heat}, { + ambient_heat: ambient_tj / total_heat + }, + { electricity: NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, electricity), network_gas: NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, network_gas), - ambient_heat: NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat)} - ) + ambient_heat: NODE_EFFICIENCY(households_space_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat) + } + ) diff --git a/sparse_graph_queries/households/households_water_heater_hybrid_heatpump_air_water_electricity+input.ad b/sparse_graph_queries/households/households_water_heater_hybrid_heatpump_air_water_electricity+input.ad index de45f5a496..4eecfb978f 100644 --- a/sparse_graph_queries/households/households_water_heater_hybrid_heatpump_air_water_electricity+input.ad +++ b/sparse_graph_queries/households/households_water_heater_hybrid_heatpump_air_water_electricity+input.ad @@ -1,23 +1,46 @@ -# this query ensures that the hybrid heat pump input slot shares for electricity, gas and ambient heat are set in the right proportion (i.e. in accordance with the electricity and gas going into the node as specified by the user) -# first, the electricity going to HHPs is calculated (elec_tj) -# secondly, the ambient accompanying this electricity is calculated (by calculating the ratio between electricity and ambient in the HHP node) -# thirdly, the gas going to HHPs is calculated (gas_tj) -# this gives the total demand of the HHP node -# finally, the input slot shares for electricity, gas and ambient_heat are set using their respective share in the total demand of the HHP node -# if total_heat is zero (i.e. there are no HHPs in the start year) the input slots shares are set equal to the default node values +# This query sets the input efficiencies of electricity, network_gas and ambient_heat. +# If the electricity input of the HHP in the default node values (i.e. parent dataset) is higher +# than 0.0, the ambient heat demand (ambient_tj) is determined based on the share of ambient required +# per unit of electricity input. +# If the electricity input is zero, the ambient heat demand (ambient_tj) is determined based on the +# share of ambient required +# per unit of network gas input. +# The input slot shares are set using their respective share in the total demand of the HHP node. +# If total_heat is zero, the input slots shares are set equal to the default node values. - query = - elec_tj = DATASET_INPUT(households_final_demand_electricity_demand) * DATASET_INPUT(households_final_demand_electricity_households_final_demand_for_hot_water_electricity_parent_share) * SPARSE_GRAPH_QUERY("households_final_demand_for_hot_water_electricity-households_water_heater_hybrid_heatpump_air_water_electricity@electricity", parent_share); - ambient_relative_to_elec = NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat) / NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, electricity); - ambient_tj = elec_tj * ambient_relative_to_elec; - gas_tj = DATASET_INPUT(households_final_demand_network_gas_demand) * DATASET_INPUT(households_final_demand_network_gas_households_final_demand_for_hot_water_network_gas_parent_share) * SPARSE_GRAPH_QUERY("households_final_demand_for_hot_water_network_gas-households_water_heater_hybrid_heatpump_air_water_electricity@network_gas", parent_share); + elec_tj = + PRODUCT( + DATASET_INPUT(households_final_demand_electricity_demand), + DATASET_INPUT(households_final_demand_electricity_households_final_demand_for_hot_water_electricity_parent_share), + DATASET_INPUT(households_final_demand_for_hot_water_electricity_households_water_heater_hybrid_heatpump_air_water_electricity_parent_share) + ); + gas_tj = + PRODUCT( + DATASET_INPUT(households_final_demand_network_gas_demand), + DATASET_INPUT(households_final_demand_network_gas_households_final_demand_for_hot_water_network_gas_parent_share), + DATASET_INPUT(households_final_demand_for_hot_water_network_gas_households_water_heater_hybrid_heatpump_air_water_electricity_parent_share) + ); + + ambient_tj = + IF( + NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, electricity) > 0.0, + -> { elec_tj * DIVIDE(NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat), NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, electricity)) }, + -> { gas_tj * DIVIDE(NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat), NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, network_gas)) }, + ); + total_heat = elec_tj + ambient_tj + gas_tj; - IF(total_heat > 0.0, { + IF( + total_heat > 0.0, + { electricity: elec_tj / total_heat, network_gas: gas_tj / total_heat, - ambient_heat: ambient_tj / total_heat}, { + ambient_heat: ambient_tj / total_heat + }, + { electricity: NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, electricity), network_gas: NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, network_gas), - ambient_heat: NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat)} - ) + ambient_heat: NODE_EFFICIENCY(households_water_heater_hybrid_heatpump_air_water_electricity, input, ambient_heat) + } + ) diff --git a/sparse_graph_queries/molecules/industry_chemicals_fertilizers_emitted_co2+demand.ad b/sparse_graph_queries/molecules/industry_chemicals_fertilizers_emitted_co2+demand.ad index 1d18433973..2d12efa706 100644 --- a/sparse_graph_queries/molecules/industry_chemicals_fertilizers_emitted_co2+demand.ad +++ b/sparse_graph_queries/molecules/industry_chemicals_fertilizers_emitted_co2+demand.ad @@ -1 +1,3 @@ -- query = 0.0 \ No newline at end of file +# Temporarily set to zero to avoid double defining of molecule demand, ETSource #3454 + +- query = 0.0 diff --git a/sparse_graph_queries/molecules/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2+demand.ad b/sparse_graph_queries/molecules/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2+demand.ad index 1d18433973..2d12efa706 100644 --- a/sparse_graph_queries/molecules/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2+demand.ad +++ b/sparse_graph_queries/molecules/industry_final_demand_for_chemical_fertilizers_network_gas_non_energetic_co2+demand.ad @@ -1 +1,3 @@ -- query = 0.0 \ No newline at end of file +# Temporarily set to zero to avoid double defining of molecule demand, ETSource #3454 + +- query = 0.0 diff --git a/sparse_graph_queries/molecules/molecules_other_utilisation_delayed_emitted_co2+demand.ad b/sparse_graph_queries/molecules/molecules_other_utilisation_delayed_emitted_co2+demand.ad index 1d18433973..2d12efa706 100644 --- a/sparse_graph_queries/molecules/molecules_other_utilisation_delayed_emitted_co2+demand.ad +++ b/sparse_graph_queries/molecules/molecules_other_utilisation_delayed_emitted_co2+demand.ad @@ -1 +1,3 @@ -- query = 0.0 \ No newline at end of file +# Temporarily set to zero to avoid double defining of molecule demand, ETSource #3454 + +- query = 0.0 diff --git a/spec/sector_mapping_spec.rb b/spec/sector_mapping_spec.rb new file mode 100644 index 0000000000..c58a0aba96 --- /dev/null +++ b/spec/sector_mapping_spec.rb @@ -0,0 +1,303 @@ +# frozen_string_literal: true + +require 'spec_helper' +require 'csv' +require 'set' + +# Guarantees that the mapping, node labels, emissions store and the gquery corpus are +# mutually consistent. +RSpec.describe 'Sector mapping validation' do + def normalise(value) + Atlas::SectorMapping.normalize(value) + end + + def mapping + @mapping ||= Atlas::SectorMapping.load + end + + def labelled_nodes + @labelled_nodes ||= + (Atlas::EnergyNode.all + Atlas::MoleculeNode.all).select(&:sector_label) + end + + # Check 1: every labelled node's (label, use) pair exists as a mapping row. + # An unset `use` on a labelled node fails here (its pair is [label, nil]). + def nodes_off_mapping(nodes, pairs) + nodes.reject do |node| + pairs.include?([node.sector_label, normalise(node.use)]) + end + end + + # Check 2: every (slug(etm_sector)_slug(etm_subsector), use) pair in the + # default dataset's emissions store exists as a mapping (sector_label, use) + # row. The store is a subset of the mapping — the reverse (a mapping pair + # without store data) is legal; (sector_label, use) is the store join key and + # the mapping's emissions_sector/emissions_subsector columns are display-only. + def store_pairs_off_mapping(store_pairs, pairs) + store_pairs.reject { |pair| pairs.include?(pair) } + end + + # Check 3: scheme names must not collide with the sector labels used as the + # EMISSIONS first argument, or the EMISSIONS scheme dispatch is ambiguous. + def scheme_label_collisions(schemes, rows) + schemes & rows.filter_map { |row| row[:sector_label] }.uniq + end + + # Check 4: static scan of a GQL string for literal scheme-form calls which + # name an unknown scheme or an unresolvable value. Returns a list of messages. + CALL_RE = /\b(SECTOR|MSECTOR|EMISSIONS)\(([^()]*)\)/ + + def scan_offences(text, source) + text.to_s.scan(CALL_RE).flat_map do |func, arglist| + args = split_args(arglist).map { |arg| unquote(arg) }.reject(&:empty?) + offence_for(func, args, source) + end.compact + end + + # Check 6: every mapping-column reference in the direct emissions export config + # (`sector_mapping` `value:`s and the `rows: require:`/`rows: order_by:` rules) names + # a real column of the sector mapping CSV. + def export_config_column_references(config) + schema = config['schema'] || [] + rows = config['rows'] + + schema_refs = schema.select { |column| column['type'] == 'sector_mapping' }.map { |column| column['value'] } + rows_refs = rows.is_a?(Hash) ? [rows['require'], rows['order_by']] : [] + + (schema_refs + rows_refs).compact + end + + def unknown_mapping_columns(config) + export_config_column_references(config).reject { |reference| mapping.scheme?(reference) } + end + + # --------------------------------------------------------------------------- + + describe 'check 1: labelled nodes exist in the mapping' do + it 'has every labelled node (label, use) pair in the mapping' do + offenders = nodes_off_mapping(labelled_nodes, mapping.pairs).map do |node| + "#{node.key} -> (#{node.sector_label.inspect}, #{normalise(node.use).inspect})" + end + + expect(offenders).to( + be_empty, + "Labelled nodes whose (sector_label, use) pair is not a mapping row " \ + "(populate the mapping or fix the node's use):\n #{offenders.join("\n ")}" + ) + end + end + + describe 'check 2: default-dataset store pairs exist in the mapping' do + it 'has every emissions store (sector_subsector, use) pair as a mapping row' do + offenders = store_pairs_off_mapping(default_store_pairs, mapping.pairs).map do |label, use| + "(#{label.inspect}, #{use.inspect})" + end + + expect(offenders).to( + be_empty, + "Emissions store pairs in #{default_dataset} with no mapping (sector_label, use) row. " \ + "The store key prefix slug(etm_sector)_slug(etm_subsector) must equal a mapping " \ + "sector_label, or mapped EMISSIONS queries silently sum the pair as 0.0. Add the " \ + "mapping row, or rename the label / the store's sector naming to match:\n " \ + "#{offenders.join("\n ")}" + ) + end + end + + describe 'check 3: scheme names disjoint from sector keys' do + it 'has no scheme name equal to a sector label' do + collisions = scheme_label_collisions(mapping.scheme_names, mapping.rows) + + expect(collisions).to( + be_empty, + "Scheme names colliding with EMISSIONS sector keys: #{collisions.inspect}" + ) + end + end + + describe 'check 4: gqueries and inputs reference known schemes/values' do + Atlas::Gquery.all.each do |gquery| + it "resolves every literal scheme-form call in gquery #{gquery.key}" do + expect(scan_offences(gquery.query, "gquery #{gquery.key}")).to eq([]) + end + end + + Atlas::Input.all.each do |input| + it "resolves every literal scheme-form call in input #{input.key}" do + gql = [ + input.query, input.start_value_gql, + input.min_value_gql, input.max_value_gql + ].join("\n") + + expect(scan_offences(gql, "input #{input.key}")).to eq([]) + end + end + end + + describe 'check 5: reverse coverage is deliberately NOT enforced' do + it 'allows mapping rows with zero labelled nodes during incremental rollout' do + # Intentionally no assertion: a mapping row without a labelled node is + # legal so `sector_label` can be populated incrementally. Documented here + # so its absence is a decision, not an oversight. The same stance applies + # to the emissions store: a mapping pair without store data is legal (the + # store is a subset of the mapping — see check 2 for the direction that + # IS enforced); a mapped query over such a pair reads as zero until its + # data lands. + expect(true).to be(true) + end + end + + describe 'check 6: direct emissions export config references real mapping columns' do + it 'names only real sector_mapping columns in "value:", "require:" and "order_by:"' do + config = Atlas::Config.read('direct_emissions_csv') + offenders = unknown_mapping_columns(config) + + expect(offenders).to( + be_empty, + "direct_emissions_csv.yml references unknown mapping column(s) #{offenders.inspect}; " \ + "valid columns: #{mapping.scheme_names.inspect}" + ) + end + end + + # The following specs test that the checks fail on broken inputs. + + describe 'each check turns red on a broken input' do + let(:broken_node) do + Struct.new(:key, :sector_label, :use).new(:bad, :industry_steel, 'energetic') + end + + it 'check 1 flags a node whose pair is missing from the mapping' do + expect(nodes_off_mapping([broken_node], Set.new)).to eq([broken_node]) + end + + it 'check 2 flags a store pair with no mapping row' do + store_pairs = Set.new([%i[transport_trams_and_metros energetic]]) + expect(store_pairs_off_mapping(store_pairs, Set.new)) + .to eq([%i[transport_trams_and_metros energetic]]) + end + + it 'check 2 accepts a store pair present in the mapping' do + store_pairs = Set.new([%i[industry_steel energetic]]) + expect(store_pairs_off_mapping(store_pairs, Set.new([%i[industry_steel energetic]]))) + .to eq([]) + end + + it 'check 3 flags a scheme name that is also a sector label' do + rows = [{ sector_label: :klimaattafel }] + expect(scheme_label_collisions(%i[klimaattafel], rows)).to eq(%i[klimaattafel]) + end + + it 'check 4 flags an unknown scheme in a call' do + expect(scan_offences("SECTOR(impossible, query)", 'test')) + .to include(/impossible/) + end + + it 'check 4 flags an unresolvable value in a known scheme' do + offences = scan_offences("SECTOR(ipcc_crt_code_agg, 'Nonexistent')", 'test') + + expect(offences).to include(/Nonexistent/) + expect(offences).to include(/unresolvable value/) + end + + it 'check 4 accepts a resolvable literal call' do + expect(scan_offences("SECTOR(ipcc_crt_code_agg, '1.A.1')", 'test')).to eq([]) + end + + it 'check 4 leaves legacy one-argument SECTOR untouched' do + expect(scan_offences("SECTOR(households)", 'test')).to eq([]) + end + + it 'check 6 flags an unknown "sector_mapping" column value' do + config = { + 'schema' => [{ 'type' => 'sector_mapping', 'value' => 'impossible' }], + 'rows' => { 'require' => 'emissions_sector' } + } + + expect(unknown_mapping_columns(config)).to eq(['impossible']) + end + + it 'check 6 flags an unknown "rows: require:" column' do + config = { 'schema' => [], 'rows' => { 'require' => 'impossible' } } + + expect(unknown_mapping_columns(config)).to eq(['impossible']) + end + + it 'check 6 flags an unknown "rows: order_by:" column' do + config = { 'schema' => [], 'rows' => { 'require' => 'emissions_sector', 'order_by' => 'impossible' } } + + expect(unknown_mapping_columns(config)).to eq(['impossible']) + end + + it 'check 6 accepts a config naming only real mapping columns' do + config = { + 'schema' => [{ 'type' => 'sector_mapping', 'value' => 'ipcc_crt_code_agg' }], + 'rows' => { 'require' => 'emissions_sector', 'order_by' => 'ipcc_crt_code' } + } + + expect(unknown_mapping_columns(config)).to eq([]) + end + end + + private + + def default_dataset + @default_dataset ||= YAML.load_file(Atlas.data_dir.join('config/default_dataset.yml')) + end + + # (label, use) pairs present in the default dataset's emissions store, where + # label is the store key prefix slug(etm_sector)_slug(etm_subsector) — joined + # exactly as the store loader joins it (per-part normalize, '_'). + def default_store_pairs + @default_store_pairs ||= begin + path = Atlas.data_dir.join('datasets', default_dataset, 'emissions.csv') + CSV.read(path, headers: true).each_with_object(Set.new) do |row, set| + label = [normalise(row['etm_sector']), normalise(row['etm_subsector'])] + .compact.join('_').to_sym + set << [label, normalise(row['use'])] + end + end + end + + def unquote(arg) + arg.strip.gsub(/\A['"]|['"]\z/, '') + end + + # Splits an argument list on commas, except commas inside quoted values + # (e.g. 'Pulp, paper and print' is one argument). + def split_args(arglist) + arglist.scan(/'[^']*'|"[^"]*"|[^,\s][^,]*/) + end + + # Returns an offence message for a literal call, or nil when it is legal or + # out of static reach (legacy one-arg SECTOR, non-scheme EMISSIONS). A value + # resolves when it appears in the scheme's column, even with zero labelled + # nodes (the mapping, not node labelling, is what is being validated). + def offence_for(func, args, source) + return nil if args.empty? + + scheme = args.first + + if func == 'EMISSIONS' + # Only the mapped form is in reach; a non-scheme first arg is legacy. + return nil unless mapping.scheme?(scheme) + + values = args[1, 1] # the value; trailing ghg / 1990 are not scheme values + else # SECTOR / MSECTOR + return nil if args.size < 2 # legacy one-argument form + + values = args.drop(1) + end + + unless mapping.scheme?(scheme) + return "#{source}: #{func}(#{args.join(', ')}) names unknown scheme " \ + "#{scheme.inspect}; valid schemes: #{mapping.scheme_names.inspect}" + end + + unresolved = values.reject { |value| mapping.lookup(scheme, value).any? } + return nil if unresolved.empty? + + "#{source}: #{func}(#{args.join(', ')}) has unresolvable value(s) " \ + "#{unresolved.inspect} for scheme #{scheme.inspect}" + end +end